From 6beac65219a297ccf895af21d0ffce2f0cd72109 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 10:34:21 +0000 Subject: [PATCH 1/3] Bump codecov/codecov-action from 3 to 4 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6ea3641..913d44c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -95,7 +95,7 @@ jobs: - name: cargo llvm-cov run: cargo llvm-cov -p wasm2map --locked --all-features --lcov --output-path lcov.info - name: Upload to codecov.io - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: fail_ci_if_error: true coverage-unix: @@ -118,6 +118,6 @@ jobs: - name: cargo llvm-cov run: cargo llvm-cov -p wasm2map --locked --all-features --lcov --output-path lcov.info - name: Upload to codecov.io - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: fail_ci_if_error: true From f7fc311a16b21ee34db74efaaed94ec1750c2126 Mon Sep 17 00:00:00 2001 From: Mark Tolmacs Date: Sat, 4 Jan 2025 16:13:58 +0100 Subject: [PATCH 2/3] Trigger Build From cb17d82f803f1211630f8debbc6eaac5a1a56a7b Mon Sep 17 00:00:00 2001 From: Mark Tolmacs Date: Sat, 4 Jan 2025 16:21:27 +0100 Subject: [PATCH 3/3] Update the codecov action to latest --- .github/workflows/test.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 913d44c..94d8217 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -94,10 +94,11 @@ jobs: run: cargo generate-lockfile - name: cargo llvm-cov run: cargo llvm-cov -p wasm2map --locked --all-features --lcov --output-path lcov.info - - name: Upload to codecov.io - uses: codecov/codecov-action@v4 + - name: Upload test results to Codecov + if: ${{ !cancelled() }} + uses: codecov/test-results-action@v1 with: - fail_ci_if_error: true + token: ${{ secrets.CODECOV_TOKEN }} coverage-unix: runs-on: ubuntu-latest name: ubuntu / stable / coverage @@ -117,7 +118,8 @@ jobs: run: cargo generate-lockfile - name: cargo llvm-cov run: cargo llvm-cov -p wasm2map --locked --all-features --lcov --output-path lcov.info - - name: Upload to codecov.io - uses: codecov/codecov-action@v4 + - name: Upload test results to Codecov + if: ${{ !cancelled() }} + uses: codecov/test-results-action@v1 with: - fail_ci_if_error: true + token: ${{ secrets.CODECOV_TOKEN }}