diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 7006ba37b..cdf34f4a8 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -76,6 +76,7 @@ jobs: - name: Upload coverage to Codecov uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3.1.6 with: + report_type: coverage fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }} flags: integrationtests @@ -87,9 +88,10 @@ jobs: - name: Upload test results to Codecov if: ${{ !cancelled() }} - uses: codecov/test-results-action@0fa95f0e1eeaafde2c782583b36b28ad0d8c77d3 # v1.2.1 + uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3.1.6 continue-on-error: true with: + report_type: test_results fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }} flags: integrationtests diff --git a/.github/workflows/ui_tests.yml b/.github/workflows/ui_tests.yml index dff26853c..467b20208 100644 --- a/.github/workflows/ui_tests.yml +++ b/.github/workflows/ui_tests.yml @@ -66,6 +66,7 @@ jobs: - name: Upload coverage to Codecov uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3.1.6 with: + report_type: coverage fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }} flags: uitests @@ -77,9 +78,10 @@ jobs: - name: Upload test results to Codecov if: ${{ !cancelled() }} - uses: codecov/test-results-action@0fa95f0e1eeaafde2c782583b36b28ad0d8c77d3 # v1.2.1 + uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3.1.6 continue-on-error: true with: + report_type: test_results fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }} flags: uitests diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 3b6a0a2ad..5cd11fed9 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -64,6 +64,7 @@ jobs: if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }} # Skip in forks uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3.1.6 with: + report_type: coverage fail_ci_if_error: true token: ${{ secrets.CODECOV_TOKEN }} flags: unittests @@ -76,9 +77,10 @@ jobs: - name: Upload test results to Codecov if: ${{ !cancelled() && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) }} - uses: codecov/test-results-action@0fa95f0e1eeaafde2c782583b36b28ad0d8c77d3 # v1.2.1 + uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3.1.6 continue-on-error: true with: + report_type: test_results fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }} flags: unittests