We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1300da commit a7c40c9Copy full SHA for a7c40c9
.github/dependabot.yml
@@ -3,12 +3,6 @@
3
4
version: 2
5
updates:
6
- - package-ecosystem: "gomod"
7
- directory: "/" # Location of package manifests
8
- schedule:
9
- interval: "weekly"
10
- day: "sunday"
11
- time: "16:00"
12
- package-ecosystem: "docker"
13
directories:
14
- "/"
@@ -24,4 +18,4 @@ updates:
24
18
time: "16:00"
25
19
groups:
26
20
all-actions:
27
- patterns: [ "*" ]
21
+ patterns: ["*"]
.github/workflows/govulncheck.yml
@@ -0,0 +1,16 @@
1
+on: [push]
2
+
+jobs:
+ govulncheck:
+ runs-on: ubuntu-latest
+ name: Run govulncheck
+ strategy:
+ matrix:
+ go:
+ - "1.25"
+ - "1.26"
+ steps:
+ - id: govulncheck
+ uses: golang/govulncheck-action@v1
15
+ with:
16
+ go-version-input: ${{ matrix.go }}
0 commit comments