Skip to content

Commit

Permalink
fix: always run govulncheck using go stable
Browse files Browse the repository at this point in the history
Fixes: 420f7df (fix: ignore govulncheck for non-stable go version (#162))
  • Loading branch information
aymanbagabas committed Sep 11, 2024
1 parent a1e29e3 commit 31c8f41
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,14 @@ on:

jobs:
govulncheck:
if: ${{ inputs.go_version == 'stable' || inputs.go-version == 'stable' }}
runs-on: ubuntu-latest
env:
GH_PAT: ${{ secrets.gh_pat }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ inputs.go_version || inputs.go-version }}
go-version: stable
cache: true
check-latest: true
- run: |
Expand Down

0 comments on commit 31c8f41

Please sign in to comment.