Skip to content

Commit 5924036

Browse files
committed
Add new Github Action workflow to run govulncheck
This so we can disable dependabot on this project, that will generate more false positives.
1 parent 1a195a0 commit 5924036

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/govulncheck.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: govulncheck
2+
on:
3+
pull_request:
4+
schedule:
5+
- cron: '22 10 * * *'
6+
workflow_dispatch:
7+
permissions:
8+
contents: read
9+
jobs:
10+
govulncheck:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v5
14+
- uses: actions/setup-go@v6
15+
with:
16+
go-version: '1.25'
17+
- run: |
18+
go run golang.org/x/vuln/cmd/govulncheck@latest ./...

0 commit comments

Comments
 (0)