We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4f7975 commit e592c7eCopy full SHA for e592c7e
.github/workflows/govulncheck.yml
@@ -0,0 +1,21 @@
1
+name: govulncheck
2
+on:
3
+ push:
4
+ pull_request:
5
+ schedule: # daily at 11:22 UTC
6
+ - cron: '22 11 * * *'
7
+ workflow_dispatch:
8
+permissions:
9
+ contents: read
10
+jobs:
11
+ govulncheck:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v5
15
+ with:
16
+ persist-credentials: false
17
+ - uses: actions/setup-go@v6
18
19
+ go-version-file: go.mod
20
+ - run: |
21
+ go run golang.org/x/vuln/cmd/govulncheck@latest ./...
0 commit comments