Skip to content

Commit 1b2c42d

Browse files
committed
govulncheck: explicit setup-go action
explicit declaration here after removing it from the govulncheck-action in codeready-toolchain/toolchain-cicd#157 Signed-off-by: Xavier Coulon <xcoulon@redhat.com>
1 parent 0f25598 commit 1b2c42d

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/govulncheck.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,12 @@ jobs:
1313
- name: Checkout code
1414
uses: actions/checkout@v6
1515

16-
- name: Run govulncheck
17-
uses: codeready-toolchain/toolchain-cicd/govulncheck-action@master
16+
- name: Install Go
17+
uses: actions/setup-go@v6
1818
with:
1919
go-version-file: go.mod
20-
cache: false
20+
21+
- name: Run govulncheck
22+
uses: xcoulon/toolchain-cicd/govulncheck-action@b4d66a01ffe6b1591b26d2506d438e1bc2635556
23+
with:
2124
config: .govulncheck.yaml

.github/workflows/test-with-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install Go
2626
uses: actions/setup-go@v6
2727
with:
28-
go-version file: go.mod
28+
go-version-file: go.mod
2929

3030
- name: generate
3131
run: |

0 commit comments

Comments
 (0)