Skip to content

Commit

Permalink
CI: Move to codecov-action@4
Browse files Browse the repository at this point in the history
Again, trying to fix the error
```
Codecov: Failed to properly upload: The process '/home/runner/work/_actions/codecov/codecov-action/v3/dist/codecov' failed with exit code 255
```
codecov/codecov-action#598
  • Loading branch information
a13xp0p0v committed Apr 17, 2024
1 parent 24d0e5c commit f849d88
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/engine_unit-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
coverage xml -i -o coverage_unittest.xml
- name: Handle coverage
uses: codecov/codecov-action@v3.1.5
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./coverage_unittest.xml
flags: engine_unit-test
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/functional_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ jobs:
coverage xml -i -o coverage.xml
- name: Handle coverage
uses: codecov/codecov-action@v3.1.5
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./coverage.xml
flags: functional_test
Expand Down

0 comments on commit f849d88

Please sign in to comment.