Skip to content

Commit a4432eb

Browse files
committed
ci: update CI workflows for Go 1.23 and latest action versions
- Add Go 1.23 to the lint workflow matrix - Update golangci-lint-action to version 6 in the lint workflow - Add Go 1.23 to the testing workflow matrix - Update codecov-action to version 5 in the testing workflow Signed-off-by: appleboy <appleboy.tw@gmail.com>
1 parent d5f4b3b commit a4432eb

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
matrix:
88
os: [ubuntu-latest]
9-
go: ["1.20", 1.21, 1.22]
9+
go: ["1.20", 1.21, 1.22, 1.23]
1010
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
1111
runs-on: ${{ matrix.os }}
1212

@@ -26,7 +26,7 @@ jobs:
2626
ref: ${{ github.ref }}
2727

2828
- name: golangci-lint
29-
uses: golangci/golangci-lint-action@v5
29+
uses: golangci/golangci-lint-action@v6
3030
with:
3131
version: latest
3232
args: --verbose --timeout 10m

.github/workflows/testing.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest]
16-
go: [1.19, "1.20", 1.21, 1.22]
16+
go: [1.19, "1.20", 1.21, 1.22, 1.23]
1717
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
1818
runs-on: ${{ matrix.os }}
1919

@@ -53,4 +53,4 @@ jobs:
5353
go test -v -covermode=atomic -coverprofile=coverage.out ./...
5454
5555
- name: Upload coverage to Codecov
56-
uses: codecov/codecov-action@v4
56+
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)