Skip to content

Commit fc3510e

Browse files
authored
Merge pull request #15 from kolyshkin/dep
Add .github/dependabot.yml
2 parents 33e090f + d7edb92 commit fc3510e

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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"

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
- main
88
- release-*
99
pull_request:
10+
schedule:
11+
# Runs at 00:00 UTC every Monday
12+
- cron: '0 0 * * 1'
1013
permissions:
1114
contents: read
1215

.github/workflows/validate.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ on:
77
- main
88
- release-*
99
pull_request:
10+
schedule:
11+
# Runs at 00:00 UTC every Monday
12+
- cron: '0 0 * * 1'
1013
env:
1114
GO_VERSION: 1.24
1215
permissions:
@@ -75,11 +78,17 @@ jobs:
7578
go-version: "${{ env.GO_VERSION }}"
7679
- run: go mod tidy --diff
7780

81+
govulncheck:
82+
runs-on: ubuntu-24.04
83+
steps:
84+
- uses: golang/govulncheck-action@v1
85+
7886
all-done:
7987
needs:
8088
- codespell
8189
- deps
8290
- go-fix
91+
- govulncheck
8392
- lint
8493
- space-at-eol
8594
runs-on: ubuntu-24.04

0 commit comments

Comments
 (0)