Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codacy-coverage-reporter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
cache: true

- name: Cache dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/go/pkg/mod
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
cache: true

- name: Cache dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/go/pkg/mod
Expand All @@ -109,7 +109,7 @@ jobs:
run: go test -race -coverprofile=coverage.out -coverpkg=./... ./... -count=1

- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v6.0.0
uses: codecov/codecov-action@v6.0.1
with:
files: coverage.out
fail_ci_if_error: false
Expand All @@ -132,7 +132,7 @@ jobs:
cache: true

- name: Cache dependencies
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
~/go/pkg/mod
Expand All @@ -148,4 +148,4 @@ jobs:
run: go test -coverprofile=cover.out -coverpkg=./... ./... && go tool cover -html=cover.out -o cover.html && true

- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v6.0.0
uses: codecov/codecov-action@v6.0.1
Loading