Skip to content

Commit dea2dbe

Browse files
Changes for sha
1 parent 3501b96 commit dea2dbe

2 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/ci-tests.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,16 @@ jobs:
139139
runs-on: ubuntu-latest
140140
name: govulncheck
141141
steps:
142-
- id: govulncheck
143-
uses: golang/govulncheck-action@7da72f730e37eeaad891fcff0a532d27ed737cd4 #v1
144-
continue-on-error: true
142+
- uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 #v4.0.0
143+
- name: Set up Go version
144+
uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9 #v4
145145
with:
146146
go-version-file: go.mod
147-
go-package: ./...
147+
- name: Install govulncheck
148+
run: go install golang.org/x/vuln/cmd/govulncheck@latest
149+
- name: Run govulncheck
150+
run: govulncheck ./...
151+
continue-on-error: true
148152

149153
checkDockerImage:
150154
runs-on: ubuntu-latest

.github/workflows/nightly-parallel.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ jobs:
490490
run: go install github.com/wadey/gocovmerge@latest
491491

492492
- name: Download all coverage artifacts
493-
uses: actions/download-artifact@v4
493+
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 #v4
494494
with:
495495
pattern: coverage-*
496496
merge-multiple: true

0 commit comments

Comments
 (0)