Skip to content

Commit 07df900

Browse files
Update GitHub Actions
1 parent ad203f0 commit 07df900

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
1+
# https://docs.github.com/en/actions
22

33
on:
44
- pull_request
@@ -82,15 +82,18 @@ jobs:
8282

8383
- name: Upload test results to Codecov.io
8484
if: ${{ !cancelled() }}
85-
uses: codecov/test-results-action@v1
85+
uses: codecov/codecov-action@v5
8686
with:
8787
token: ${{ secrets.CODECOV_TOKEN }}
88+
report_type: test_results
8889
disable_search: true
8990
files: ./test-results.xml
9091

9192
- name: Upload code coverage data to Codecov.io
92-
uses: codecov/codecov-action@v4
93+
if: ${{ !cancelled() }}
94+
uses: codecov/codecov-action@v5
9395
with:
9496
token: ${{ secrets.CODECOV_TOKEN }}
97+
report_type: coverage
9598
disable_search: true
9699
files: ./code-coverage.xml

0 commit comments

Comments
 (0)