build(deps): Bump github.com/mgechev/revive from 1.3.9 to 1.5.0 #1886
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Vuln | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, labeled] | |
merge_group: | |
types: [checks_requested] | |
concurrency: | |
group: ci-${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
govulncheck: | |
runs-on: ubuntu-latest | |
name: Run govulncheck | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: technote-space/[email protected] | |
with: | |
PATTERNS: | | |
**/**.go | |
FILES: | | |
go.mod | |
go.sum | |
- uses: golang/[email protected] | |
id: govulncheck | |
if: env.GIT_DIFF | |
with: | |
go-version-input: 1.22 | |
go-package: ./... |