Skip to content

Commit 40b4f2f

Browse files
committed
ci: update go and actions version
Signed-off-by: Chen Su <ghosind@gmail.com>
1 parent a972d82 commit 40b4f2f

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/coverage.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v5
1111

1212
- name: Set up Go
13-
uses: actions/setup-go@v5
13+
uses: actions/setup-go@v6
1414
with:
15-
go-version: "1.23"
15+
go-version: "1.25"
1616

1717
- name: Test
1818
run: go test -v ./... -coverprofile=coverage.out
1919

2020
- name: Upload coverage report
21-
uses: codecov/codecov-action@v4
21+
uses: codecov/codecov-action@v5
2222
with:
2323
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
go_version: ["1.21", "1.22", "1.23"]
11+
go_version: ["1.23", "1.24", "1.25"]
1212
os: [ubuntu-latest, windows-latest, macOS-latest]
1313

1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v5
1616

1717
- name: Set up Go ${{ matrix.go_version }}
18-
uses: actions/setup-go@v5
18+
uses: actions/setup-go@v6
1919
with:
2020
go-version: ${{ matrix.go_version }}
2121

0 commit comments

Comments
 (0)