Updating r7 from v7.1.0

This commit is contained in:
Patrick Lehmann
2025-12-20 17:38:02 +01:00
committed by GitHub
2 changed files with 3 additions and 1 deletions

View File

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

View File

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