From ea0e95012154b1a0ea896788520c6b2e21e979aa Mon Sep 17 00:00:00 2001 From: Vignesh Venkatasubramanian Vaidyanathan <62492557+VigneshVSV@users.noreply.github.com> Date: Tue, 26 Aug 2025 09:12:12 +0200 Subject: [PATCH] rollback codecov version to v4 instead of v4.0.1 --- .github/workflows/test-dev.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-dev.yml b/.github/workflows/test-dev.yml index ba0f36f4..25b998c3 100644 --- a/.github/workflows/test-dev.yml +++ b/.github/workflows/test-dev.yml @@ -107,10 +107,13 @@ jobs: - name: Upload coverage to Codecov if: steps.dl.outcome == 'success' - uses: codecov/codecov-action@v4.0.1 + uses: codecov/codecov-action@v4 + env: + CI: true with: token: ${{ secrets.CODECOV_TOKEN }} files: coverage.xml + fail_ci_if_error: true - name: Skip note (no Ubuntu 3.13 artifact found) if: steps.dl.outcome != 'success'