Skip to content

Commit ba0e4e2

Browse files
committed
Pin the spelling action version, to match what's enabled in project settings
This matches https://github.com/Arduino-CI/arduino_ci/settings/actions
1 parent 8b36a14 commit ba0e4e2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/spelling.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
fetch-depth: 0
2222

2323
- name: Check Spelling
24-
uses: codespell-project/actions-codespell@master
24+
uses: codespell-project/actions-codespell@v1.0
2525
with:
2626
check_filenames: true

exe/arduino_ci.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def terminate(final = nil)
100100
end
101101

102102
# make a nice status line for an action and react to the action
103-
# TODO / note to self: inform_multline is tougher to write
103+
# TODO / note to self: inform_multiline is tougher to write
104104
# without altering the signature because it only leaves space
105105
# for the checkmark _after_ the multiline, it doesn't know how
106106
# to make that conditionally the body
@@ -121,7 +121,7 @@ def perform_action(message, multiline, mark_fn, on_fail_msg, tally_on_fail, abor
121121
$stdout.flush
122122
result = yield
123123
mark = mark_fn.nil? ? "" : mark_fn.call(result)
124-
# if multline, put checkmark at full width
124+
# if multiline, put checkmark at full width
125125
print endline if multiline
126126
puts mark.to_s.rjust(WIDTH - line.length, " ")
127127
unless result

0 commit comments

Comments
 (0)