Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/go-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@
restore-keys: |
${{ runner.os }}-go-
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0
with:
go-version-file: './go.mod'

- run: |

Check warning on line 44 in .github/workflows/go-test.yaml

View workflow job for this annotation

GitHub Actions / Action lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2086:info:4:9: Double quote to prevent globbing and word splitting [shellcheck] Raw Output: i:.github/workflows/go-test.yaml:44:7: shellcheck reported issue in this script: SC2086:info:4:9: Double quote to prevent globbing and word splitting [shellcheck]

Check warning on line 44 in .github/workflows/go-test.yaml

View workflow job for this annotation

GitHub Actions / Action lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2046:warning:6:17: Quote this to prevent word splitting [shellcheck] Raw Output: w:.github/workflows/go-test.yaml:44:7: shellcheck reported issue in this script: SC2046:warning:6:17: Quote this to prevent word splitting [shellcheck]

Check warning on line 44 in .github/workflows/go-test.yaml

View workflow job for this annotation

GitHub Actions / Action lint

[actionlint] reported by reviewdog 🐶 shellcheck reported issue in this script: SC2044:warning:2:12: For loops over find output are fragile. Use find -exec or a while read loop [shellcheck] Raw Output: w:.github/workflows/go-test.yaml:44:7: shellcheck reported issue in this script: SC2044:warning:2:12: For loops over find output are fragile. Use find -exec or a while read loop [shellcheck]
# We limit the depth to 3 mostly to avoid go.mod files that get pulled into `third_party` like some hashicorp repos.
for dir in $(find . -name go.mod -maxdepth 3 -exec dirname {} \; ); do
echo "::group:: $dir"
Expand Down
Loading