Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
- name: Run e2e tests
run: go test -race -coverpkg=./... -coverprofile=coverage-e2e.out -covermode=atomic ./e2e/...
- name: Upload coverage to Codecov (unit)
uses: codecov/codecov-action@v5.3.1
uses: codecov/codecov-action@v5.4.0
with:
name: Code Coverage for GO SDK (unit)
files: ./coverage-unit.out
Expand All @@ -67,7 +67,7 @@ jobs:
verbose: true
token: ${{ secrets.CODECOV_UPLOAD_TOKEN }}
- name: Upload coverage to Codecov (e2e)
uses: codecov/codecov-action@v5.3.1
uses: codecov/codecov-action@v5.4.0
with:
name: Code Coverage for GO SDK (e2e)
files: ./coverage-e2e.out
Expand Down
Loading