We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a195a0 commit a9d957eCopy full SHA for a9d957e
1 file changed
.github/workflows/govulncheck.yaml
@@ -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