Skip to content

Commit f52ce15

Browse files
authored
ci: fix code coverage upload (#636)
codecov report upload is failing due to rate limiting Signed-off-by: Ramkumar Chinchani <[email protected]>
1 parent 3c4ef39 commit f52ce15

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/build.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,9 @@ jobs:
9898
if: always()
9999
uses: ./.github/actions/show-disk-usage
100100
- name: Upload code coverage
101-
uses: codecov/codecov-action@v3
101+
uses: codecov/codecov-action@v4
102+
with:
103+
token: ${{ secrets.CODECOV_TOKEN }}
102104
- name: Upload artifacts
103105
uses: actions/upload-artifact@v3
104106
if: ${{ matrix.privilege-level == 'priv' }}

.github/workflows/coverage.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,9 @@ jobs:
9595
if: always()
9696
uses: ./.github/actions/show-disk-usage
9797
- name: Upload code coverage
98-
uses: codecov/codecov-action@v3
98+
uses: codecov/codecov-action@v4
9999
with:
100+
token: ${{ secrets.CODECOV_TOKEN }}
100101
files: coverage-${{ matrix.privilege-level}}.txt
101102
- name: Upload artifacts
102103
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)