From 1a4c078c4ec040d207c453c20f69f97f08ef9571 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:23:37 +0000 Subject: [PATCH] Bump codecov/codecov-action from 4 to 5 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4...v5) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Clean up files left by codecov workflow --- .github/workflows/test_ert.yml | 6 ++++-- .github/workflows/test_everest.yml | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_ert.yml b/.github/workflows/test_ert.yml index 1fedd231656..9e0da2f02d7 100644 --- a/.github/workflows/test_ert.yml +++ b/.github/workflows/test_ert.yml @@ -68,7 +68,7 @@ jobs: - name: Upload coverage to Codecov id: codecov1 - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 continue-on-error: true with: token: ${{ secrets.CODECOV_TOKEN }} @@ -80,7 +80,7 @@ jobs: run: | sleep 30 - name: Codecov retry - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 if: steps.codecov1.outcome == 'failure' with: token: ${{ secrets.CODECOV_TOKEN }} @@ -110,5 +110,7 @@ jobs: rm -rf .coverage rm -f coverage.xml cov1.xml cov2.xml junit.xml rm -f ert.*.whl + rm -f codecov.SHA* + rm -f codecov git status --porcelain test -z "$(git status --porcelain)" diff --git a/.github/workflows/test_everest.yml b/.github/workflows/test_everest.yml index 9aea20bf1c7..693de3655e7 100644 --- a/.github/workflows/test_everest.yml +++ b/.github/workflows/test_everest.yml @@ -78,7 +78,7 @@ jobs: - name: Upload coverage to Codecov if: inputs.test-type != 'everest-docs-entry-test' && inputs.test-type != 'doc' id: codecov1 - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 continue-on-error: true with: token: ${{ secrets.CODECOV_TOKEN }} @@ -90,7 +90,7 @@ jobs: run: | sleep 30 - name: Codecov retry - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 if: steps.codecov1.outcome == 'failure' && inputs.test-type != 'everest-docs-entry-test' && inputs.test-type != 'doc' with: token: ${{ secrets.CODECOV_TOKEN }}