Skip to content

Commit d6205e8

Browse files
committed
ci: update CI configuration and dependencies for Go projects
- Update golangci-lint-action from v4 to v6 - Add Go version 1.23 to the test matrix - Update codecov-action from v4 to v5 Signed-off-by: appleboy <[email protected]>
1 parent 05406e7 commit d6205e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
check-latest: true
1616

1717
- name: Setup golangci-lint
18-
uses: golangci/golangci-lint-action@v4
18+
uses: golangci/golangci-lint-action@v6
1919
with:
2020
version: latest
2121
args: --verbose
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
os: [ubuntu-latest]
28-
go: ["1.20", 1.21, 1.22]
28+
go: ["1.20", 1.21, 1.22, 1.23]
2929
include:
3030
- os: ubuntu-latest
3131
go-build: ~/.cache/go-build
@@ -70,6 +70,6 @@ jobs:
7070
go test -v -covermode=atomic -coverprofile=coverage.out
7171
7272
- name: Upload coverage to Codecov
73-
uses: codecov/codecov-action@v4
73+
uses: codecov/codecov-action@v5
7474
with:
7575
flags: ${{ matrix.os }},go-${{ matrix.go }}

0 commit comments

Comments
 (0)