Skip to content

Commit f9ebdfc

Browse files
committed
update go version and actions for workflows
1 parent 4b9c854 commit f9ebdfc

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/lint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ jobs:
44
lint:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v3
8-
- uses: actions/setup-go@v4
7+
- uses: actions/checkout@v4
8+
- uses: actions/setup-go@v5
99
with:
10-
go-version: '1.22'
10+
go-version: '1.23'
1111
- name: golangci-lint
12-
uses: golangci/golangci-lint-action@v3
12+
uses: golangci/golangci-lint-action@v6
1313
with:
1414
version: v1.63
1515

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.21.x, 1.22.x]
7+
go-version: [1.22.x, 1.23.x]
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Install Go
11-
uses: actions/setup-go@v2
11+
uses: actions/setup-go@v5
1212
with:
1313
go-version: ${{ matrix.go-version }}
1414
- name: Checkout code
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
- name: Test
1717
run: go test ./...

0 commit comments

Comments
 (0)