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.
2 parents 5605e2a + 99deb57 commit 626d620Copy full SHA for 626d620
2 files changed
.github/workflows/govulncheck.yml
@@ -0,0 +1,21 @@
1
+---
2
+name: govulncheck
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
+ - master
9
+ schedule:
10
+ - cron: '33 2 * * *'
11
+
12
+permissions:
13
+ contents: read
14
15
+jobs:
16
+ govulncheck:
17
+ runs-on: ubuntu-latest
18
+ name: Run govulncheck
19
+ steps:
20
+ - id: govulncheck
21
+ uses: golang/govulncheck-action@31f7c5463448f83528bd771c2d978d940080c9fd # v1.0.4-unreleased
Makefile.common
@@ -425,9 +425,3 @@ $(1)_precheck:
425
exit 1; \
426
fi
427
endef
428
-
429
-govulncheck: install-govulncheck
430
- govulncheck ./...
431
432
-install-govulncheck:
433
- command -v govulncheck > /dev/null || go install golang.org/x/vuln/cmd/govulncheck@latest
0 commit comments