Skip to content

Commit 8166b1c

Browse files
Fix typo (#3352)
1 parent b782590 commit 8166b1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/post-dependabot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
- name: check for modified testing/go.mod or testing/go.sum
2929
id: testing-mod-check
30-
run: echo "modified=$(if git diff-index --quite HEAD -- testing/go.mod testing/go.sum; then echo "false"; else echo "true"; fi)" >> $GITHUB_OUTPUT
30+
run: echo "modified=$(if git diff-index --quiet HEAD -- testing/go.mod testing/go.sum; then echo "false"; else echo "true"; fi)" >> $GITHUB_OUTPUT
3131

3232
- name: commit testing/go.mod and testing/go.sum files
3333
if: steps.testing-mod-check.outputs.modified == 'true'

0 commit comments

Comments
 (0)