Skip to content

Commit 4cccd71

Browse files
committed
ci: update CI workflows for compatibility and version upgrades
- Update actions/checkout version from v4 to v5 in all GitHub workflows - Add Go 1.25 to the test matrix in the Go workflow Signed-off-by: appleboy <appleboy.tw@gmail.com>
1 parent 6e41b2b commit 4cccd71

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout Code
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
ref: ${{ github.ref }}
2828
- name: Setup go
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
matrix:
4747
os: [ubuntu-latest]
48-
go: [1.23, 1.24]
48+
go: [1.23, 1.24, 1.25]
4949
include:
5050
- os: ubuntu-latest
5151
go-build: ~/.cache/go-build
@@ -61,7 +61,7 @@ jobs:
6161
go-version: ${{ matrix.go }}
6262

6363
- name: Checkout Code
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v5
6565
with:
6666
ref: ${{ github.ref }}
6767

.github/workflows/goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v5
1717
with:
1818
fetch-depth: 0
1919
- name: Set up Go

0 commit comments

Comments
 (0)