File tree Expand file tree Collapse file tree 6 files changed +10
-9
lines changed
Expand file tree Collapse file tree 6 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 2424 runs-on : ubuntu-latest
2525 steps :
2626 - name : Check out code
27- uses : actions/checkout@v4
27+ uses : actions/checkout@v5
2828 - name : Set up Go
2929 uses : actions/setup-go@v5
3030 with :
@@ -34,10 +34,10 @@ jobs:
3434 uses : golangci/golangci-lint-action@v8
3535 with :
3636 version : latest
37+ - name : Delete pre-installed shellcheck
38+ run : sudo rm -f $(which shellcheck)
3739 - name : Run shellcheck
38- 39- with :
40- ignore_paths : ./vendor/**
40+ run : make run-shellcheck
4141 - name : Dependency Licenses Review
4242 run : make check-dependency-licenses
4343 - name : Check for spelling errors
Original file line number Diff line number Diff line change 2727 runs-on : ubuntu-latest
2828 steps :
2929 - name : Check out code
30- uses : actions/checkout@v4
30+ uses : actions/checkout@v5
3131 - name : Set up Go
3232 uses : actions/setup-go@v5
3333 with :
4242 runs-on : ubuntu-latest
4343 steps :
4444 - name : Check out code
45- uses : actions/checkout@v4
45+ uses : actions/checkout@v5
4646 - name : Set up Go
4747 uses : actions/setup-go@v5
4848 with :
Original file line number Diff line number Diff line change 2727 runs-on : ubuntu-latest
2828 steps :
2929 - name : Check out code
30- uses : actions/checkout@v4
30+ uses : actions/checkout@v5
3131 - name : Set up Go
3232 uses : actions/setup-go@v5
3333 with :
Original file line number Diff line number Diff line change 2121 runs-on : ubuntu-latest
2222 steps :
2323 - name : Check out code
24- uses : actions/checkout@v4
24+ uses : actions/checkout@v5
2525 - name : Log in to the Container registry
2626 uses : docker/login-action@v3
2727 with :
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ run-modernize: FORCE install-modernize
100100
101101run-shellcheck : FORCE install-shellcheck
102102 @printf " \e[1;36m>> shellcheck\e[0m\n"
103- @find . ! -path ' ./vendor/** ' -type f \( -name ' *.bash' -o -name ' *.ksh' -o -name ' *.zsh' -o -name ' *.sh' -o -name ' *.shlib' \) -exec shellcheck {} +
103+ @find . \( -path ' ./vendor/*' -prune \) -o -type f \( -name ' *.bash' -o -name ' *.ksh' -o -name ' *.zsh' -o -name ' *.sh' -o -name ' *.shlib' \) -exec shellcheck {} +
104104
105105build/cover.out : FORCE | build
106106 @printf " \e[1;36m>> Running tests\e[0m\n"
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ mkShell {
1212 go_1_24
1313 golangci-lint
1414 gotools # goimports
15+ reuse
1516 # keep this line if you use bash
1617 bashInteractive
1718 ] ;
You can’t perform that action at this time.
0 commit comments