Skip to content

Commit

Permalink
ci: update CI configuration and dependencies for Go projects
Browse files Browse the repository at this point in the history
- 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]>
  • Loading branch information
appleboy committed Jan 4, 2025
1 parent 05406e7 commit d6205e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
check-latest: true

- name: Setup golangci-lint
uses: golangci/golangci-lint-action@v4
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --verbose
Expand All @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
go: ["1.20", 1.21, 1.22]
go: ["1.20", 1.21, 1.22, 1.23]
include:
- os: ubuntu-latest
go-build: ~/.cache/go-build
Expand Down Expand Up @@ -70,6 +70,6 @@ jobs:
go test -v -covermode=atomic -coverprofile=coverage.out
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
flags: ${{ matrix.os }},go-${{ matrix.go }}

0 comments on commit d6205e8

Please sign in to comment.