Changed codecov/test-results-action@v1 to codecov/codecov-action@v5.

This commit is contained in:
Patrick Lehmann
2025-12-20 12:43:43 +01:00
parent 2e502e165a
commit 37a73ff495
2 changed files with 3 additions and 1 deletions

View File

@@ -205,6 +205,7 @@ jobs:
continue-on-error: true
with:
token: ${{ secrets.CODECOV_TOKEN }}
report_type: "coverage"
disable_search: true
files: ${{ fromJson(inputs.coverage_report_xml).fullpath }}
flags: unittests

View File

@@ -144,12 +144,13 @@ jobs:
reporter: java-junit
- name: 📊 Publish unittest results at CodeCov
uses: codecov/test-results-action@v1
uses: codecov/codecov-action@v5
id: codecov
if: inputs.codecov == 'true'
continue-on-error: true
with:
token: ${{ secrets.CODECOV_TOKEN }}
report_type: "test_results"
disable_search: true
files: ${{ inputs.merged_junit_filename }}
flags: ${{ inputs.codecov_flags }}