Skip to content

Commit 256e723

Browse files
Remove codecov/test-results-action (#926)
This commit migrates the CI pipeline from the deprecated `codecov/test-results-action` GitHub action to the suggested `codecov/codecov-action`.
1 parent 1409fb0 commit 256e723

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci-tests.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,10 @@ jobs:
105105
run: ./cwl-conformance-test.sh
106106
- name: "Upload test results"
107107
if: ${{ !cancelled() }}
108-
uses: codecov/test-results-action@v1
108+
uses: codecov/codecov-action@v5
109109
with:
110110
flags: ${{ startsWith(matrix.on, 'macos-') && 'macos' || 'ubuntu' }}
111+
report_type: test_results
111112
token: ${{ secrets.CODECOV_TOKEN }}
112113
- name: "Upload coverage report for conformance tests"
113114
uses: actions/upload-artifact@v6
@@ -158,7 +159,7 @@ jobs:
158159
run: uv sync --locked --no-dev --group docs
159160
- name: "Build documentation and check for consistency"
160161
env:
161-
CHECKSUM: "b6302579fab166d698bbd5c4c7cea72be203a2116d3aa960173229d4c418bf3e"
162+
CHECKSUM: "aed3815e178e5192457cb8f118752ab7ddeb1c1a6c62fc17d1b376541c90040c"
162163
run: |
163164
cd docs
164165
HASH="$(uv run --no-sync make checksum | tail -n1)"
@@ -274,9 +275,10 @@ jobs:
274275
run: tox
275276
- name: "Upload test results"
276277
if: ${{ !cancelled() }}
277-
uses: codecov/test-results-action@v1
278+
uses: codecov/codecov-action@v5
278279
with:
279280
flags: ${{ startsWith(matrix.on, 'macos-') && 'macos' || 'ubuntu' }}
281+
report_type: test_results
280282
token: ${{ secrets.CODECOV_TOKEN }}
281283
- name: "Upload coverage report for unit tests"
282284
uses: actions/upload-artifact@v6

0 commit comments

Comments
 (0)