Skip to content

Commit

Permalink
github/workflows: update deprecated CI actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hagen1778 committed Feb 12, 2025
1 parent 3dbb475 commit 37c1006
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v1
uses: actions/setup-go@v5
with:
go-version: 1.20
go-version: stable
id: go
- name: Code checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Test
run: |
go test -v ./... -coverprofile=coverage.txt -covermode=atomic
Expand All @@ -27,8 +27,8 @@ jobs:
GOOS=windows go build
GOARCH=386 go build
- name: Publish coverage
uses: codecov/codecov-action@v1.0.6
uses: codecov/codecov-action@v5
with:
token: ${{secrets.CODECOV_TOKEN}}
file: ./coverage.txt
files: ./coverage.txt

0 comments on commit 37c1006

Please sign in to comment.