Skip to content

Commit

Permalink
ci: Upgrade actions and use Go 1.23.4
Browse files Browse the repository at this point in the history
  • Loading branch information
romshark committed Jan 13, 2025
1 parent 8e2ff0c commit e86f26b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go 1.23.2
uses: actions/setup-go@v4
- name: Install Go 1.23.4
uses: actions/setup-go@v5
with:
go-version: "1.23.2"
go-version: "1.23.4"
check-latest: true
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Test
- name: Test
run: go test -v -race ./...
- name: Calculate coverage
run: go test -v -covermode=count -coverprofile=coverage.out
- name: Convert coverage.out to coverage.lcov
uses: jandelgado/gcov2lcov-action@v1.0.9
uses: jandelgado/gcov2lcov-action@v1.1.1
- name: Coveralls
uses: coverallsapp/github-action@master
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.23.2"
go-version: "1.23.4"
check-latest: true
- uses: actions/checkout@v4
- name: golangci-lint
Expand Down

0 comments on commit e86f26b

Please sign in to comment.