Skip to content

Commit a7c40c9

Browse files
committed
disable gomod in dependabot, add govulncheck workflow
1 parent e1300da commit a7c40c9

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,6 @@
33

44
version: 2
55
updates:
6-
- package-ecosystem: "gomod"
7-
directory: "/" # Location of package manifests
8-
schedule:
9-
interval: "weekly"
10-
day: "sunday"
11-
time: "16:00"
126
- package-ecosystem: "docker"
137
directories:
148
- "/"
@@ -24,4 +18,4 @@ updates:
2418
time: "16:00"
2519
groups:
2620
all-actions:
27-
patterns: [ "*" ]
21+
patterns: ["*"]

.github/workflows/govulncheck.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on: [push]
2+
3+
jobs:
4+
govulncheck:
5+
runs-on: ubuntu-latest
6+
name: Run govulncheck
7+
strategy:
8+
matrix:
9+
go:
10+
- "1.25"
11+
- "1.26"
12+
steps:
13+
- id: govulncheck
14+
uses: golang/govulncheck-action@v1
15+
with:
16+
go-version-input: ${{ matrix.go }}

0 commit comments

Comments
 (0)