Skip to content

Commit

Permalink
fix: build workflow syntax
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 420f7df commit a1e29e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:

jobs:
govulncheck:
if: inputs.go_version == "stable" || inputs.go-version == "stable"
if: ${{ inputs.go_version == 'stable' || inputs.go-version == 'stable' }}
runs-on: ubuntu-latest
env:
GH_PAT: ${{ secrets.gh_pat }}
Expand Down

0 comments on commit a1e29e3

Please sign in to comment.