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 32f08e3 + 1736469 commit 0f48343Copy full SHA for 0f48343
.github/workflows/cron.yml
@@ -0,0 +1,26 @@
1
+name: cron
2
+
3
+on:
4
+ schedule:
5
+ # Run every Monday
6
+ - cron: '0 0 * * 1'
7
8
+env:
9
+ GO_VERSION: "^1.19"
10
11
+jobs:
12
+ ci-security-checks:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v3
16
+ name: Checkout code
17
+ - name: Set up Go 1.x
18
+ uses: actions/setup-go@v3
19
+ with:
20
+ go-version: ${{ env.GO_VERSION }}
21
+ - name: Install govulncheck binary
22
+ run: |
23
+ go install golang.org/x/vuln/cmd/govulncheck@latest
24
+ - name: Run security checks
25
26
+ govulncheck -v ./...
0 commit comments