We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bf4d3d commit 9b85fa7Copy full SHA for 9b85fa7
.github/workflows/vulncheck.yml
@@ -0,0 +1,29 @@
1
+name: vulncheck.yaml
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ - dev-v2
7
+ - 'release-*'
8
+ schedule:
9
+ - 0 0 * * *
10
+ workflow_dispatch:
11
+
12
+jobs:
13
+ vulncheck:
14
+ name: Vulnerability Check
15
+ runs-on: ubuntu-amd64
16
+ steps:
17
+ - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
18
19
+ - name: Set up Go
20
+ uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
21
+ with:
22
+ go-version-file: go.mod
23
+ cache: false
24
25
+ - name: Install govulncheck
26
+ run: go install golang.org/x/vuln/cmd/vulncheck@latest
27
28
+ - name: Run vulncheck
29
+ run: govulncheck ./...
0 commit comments