Skip to content

Commit e0619a9

Browse files
committed
Sync repo templates ⚙
Sync with coreos/repo-templates@7f596dd.
1 parent 2eedb85 commit e0619a9

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

.github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33

44
version: 2
55
updates:
6+
- package-ecosystem: "github-actions"
7+
directory: "/"
8+
schedule:
9+
interval: "weekly"
10+
labels: ["skip-notes"]
11+
open-pull-requests-limit: 3
612
- package-ecosystem: gomod
713
directory: /
814
schedule:

.github/workflows/go.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -20,21 +20,21 @@ jobs:
2020
name: Test
2121
strategy:
2222
matrix:
23-
go-version: [1.18.x, 1.19.x, 1.20.x]
23+
go-version: [1.22.x, 1.23.x]
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Set up Go 1.x
27-
uses: actions/setup-go@v4
27+
uses: actions/setup-go@v5
2828
with:
2929
go-version: ${{ matrix.go-version }}
3030
- name: Check out repository
31-
uses: actions/checkout@v3
31+
uses: actions/checkout@v4
3232
- name: Check modules
3333
run: go mod verify
3434
- name: Test
3535
run: go test -v ./...
3636
- name: Run linter
37-
uses: golangci/golangci-lint-action@v3
37+
uses: golangci/golangci-lint-action@v6
3838
with:
39-
version: v1.52.2
39+
version: v1.61.0
4040
args: -E=gofmt --timeout=30m0s

0 commit comments

Comments
 (0)