Skip to content

Commit 40c0ef4

Browse files
authored
Use CODECOV_TOKEN to fix rate limit issue. (#1278)
1 parent 2125d5e commit 40c0ef4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,16 @@ jobs:
2525
run: |
2626
docker compose -p cms -f docker-compose.test.yml run --rm testcms
2727
28-
- uses: codecov/codecov-action@v3
28+
- uses: codecov/codecov-action@v4
29+
env:
30+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2931
with:
3032
files: ./codecov/unittests.xml
3133
flags: unittests
3234

33-
- uses: codecov/codecov-action@v3
35+
- uses: codecov/codecov-action@v4
36+
env:
37+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
3438
with:
3539
files: ./codecov/functionaltests.xml
3640
flags: functionaltests

0 commit comments

Comments
 (0)