Skip to content

Commit

Permalink
ci: update GitHub Actions to support Go 1.23 and Codecov v5
Browse files Browse the repository at this point in the history
- Add support for Go 1.23 in GitHub Actions workflow
- Update Codecov action version from v4 to v5

Signed-off-by: appleboy <[email protected]>
  • Loading branch information
appleboy committed Dec 27, 2024
1 parent a08e2e6 commit 94aedbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,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 @@ -61,6 +61,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 94aedbd

Please sign in to comment.