Skip to content

Commit b0dbc9b

Browse files
authored
Configure dependabot for actions and update action to Go 1.24 (#200)
1 parent 8fe6e9e commit b0dbc9b

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/dependabot.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@ updates:
33
- package-ecosystem: "go"
44
directory: "/" # Location of package manifests
55
schedule:
6-
interval: "daily"
6+
interval: "monthly"
77
- package-ecosystem: "docker"
88
directory: "/" # Location of package manifests
99
schedule:
10-
interval: "daily"
10+
interval: "monthly"
11+
- package-ecosystem: "github-actions"
12+
directory: "/"
13+
schedule:
14+
interval: "monthly"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Set up Go
2020
uses: actions/setup-go@v3
2121
with:
22-
go-version: 1.19
22+
go-version: 1.24
2323

2424
- name: Build
2525
run: go build -v ./...

0 commit comments

Comments
 (0)