We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ab55c1 commit 03dd391Copy full SHA for 03dd391
.github/workflows/scan-vulns.yaml
@@ -0,0 +1,30 @@
1
+name: scan_vulns
2
+
3
+on:
4
+ push:
5
+ paths-ignore:
6
+ - "docs/**"
7
+ - "**.md"
8
+ pull_request:
9
10
11
12
13
+permissions: read-all
14
15
+jobs:
16
+ govulncheck:
17
+ name: "Run govulncheck"
18
+ runs-on: ubuntu-22.04
19
+ timeout-minutes: 15
20
+ steps:
21
+ - name: Harden Runner
22
+ uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
23
+ with:
24
+ egress-policy: audit
25
26
+ - uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
27
28
+ go-version: "1.21"
29
+ check-latest: true
30
+ - uses: golang/govulncheck-action@3a32958c2706f7048305d5a2e53633d7e37e97d0 # v1.0.2
0 commit comments