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 6fb8276 commit cbb14abCopy full SHA for cbb14ab
.github/workflows/ci.yml
@@ -50,7 +50,6 @@ jobs:
50
51
steps:
52
- uses: actions/checkout@v3
53
-
54
- uses: actions/setup-go@v4
55
with:
56
go-version: '1.20'
@@ -83,3 +82,15 @@ jobs:
83
82
run: ./scripts/report.sh
84
env:
85
BUILDKITE_ANALYTICS_TOKEN: ${{ secrets.BUILDKITE_ANALYTICS_TOKEN }}
+
86
+ vuln_check:
87
+ runs-on: ubuntu-latest
88
+ timeout-minutes: 5
89
90
+ steps:
91
+ - uses: actions/checkout@v3
92
+ - uses: actions/setup-go@v4
93
+ with:
94
+ go-version: '1.20'
95
+ - run: go install golang.org/x/vuln/cmd/govulncheck@latest
96
+ - run: govulncheck ./...
devenv.nix
@@ -7,6 +7,7 @@
7
pkgs.go
8
pkgs.git
9
pkgs.git-cliff
10
+ pkgs.govulncheck
11
pkgs.python311
12
];
13
}
0 commit comments