File tree Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Expand file tree Collapse file tree 3 files changed +22
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Please see the documentation for all configuration options:
2
+ # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
3
+
4
+ version : 2
5
+ updates :
6
+ # Dependencies listed in .github/workflows/*.yml
7
+ - package-ecosystem : " github-actions"
8
+ directory : " /"
9
+ schedule :
10
+ interval : " daily"
Original file line number Diff line number Diff line change 7
7
- main
8
8
- release-*
9
9
pull_request :
10
+ schedule :
11
+ # Runs at 00:00 UTC every Monday
12
+ - cron : ' 0 0 * * 1'
10
13
permissions :
11
14
contents : read
12
15
Original file line number Diff line number Diff line change 7
7
- main
8
8
- release-*
9
9
pull_request :
10
+ schedule :
11
+ # Runs at 00:00 UTC every Monday
12
+ - cron : ' 0 0 * * 1'
10
13
env :
11
14
GO_VERSION : 1.24
12
15
permissions :
@@ -75,11 +78,17 @@ jobs:
75
78
go-version : " ${{ env.GO_VERSION }}"
76
79
- run : go mod tidy --diff
77
80
81
+ govulncheck :
82
+ runs-on : ubuntu-24.04
83
+ steps :
84
+ - uses : golang/govulncheck-action@v1
85
+
78
86
all-done :
79
87
needs :
80
88
- codespell
81
89
- deps
82
90
- go-fix
91
+ - govulncheck
83
92
- lint
84
93
- space-at-eol
85
94
runs-on : ubuntu-24.04
You can’t perform that action at this time.
0 commit comments