We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90e3c7f commit 4d55fe1Copy full SHA for 4d55fe1
.github/workflows/ci.yml
@@ -270,7 +270,11 @@ jobs:
270
name: govulncheck
271
steps:
272
- uses: actions/checkout@v4
273
- - uses: ./.github/actions/set-go-version-in-env
+ # - uses: ./.github/actions/set-go-version-in-env
274
+ - name: Set the Go version in the environment
275
+ # Need an exact version vs the range (~x.x.x) provided by set-go-version-in-env action
276
+ run: echo GO_VERSION="$(go list -m -f '{{.GoVersion}}')" >> $GITHUB_ENV
277
+ shell: bash
278
- id: govulncheck
279
uses: golang/govulncheck-action@v1
280
with:
0 commit comments