From d93bef4254372f97937e98a8ca674a4d5f761c6f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 09:14:49 +0000 Subject: [PATCH 1/2] GH Actions: 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/quicktest.yml | 2 +- .github/workflows/unit-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/quicktest.yml b/.github/workflows/quicktest.yml index 41bc3fdef..f429e9ef1 100644 --- a/.github/workflows/quicktest.yml +++ b/.github/workflows/quicktest.yml @@ -69,7 +69,7 @@ jobs: - name: Send coverage report to Codecov if: ${{ success() && github.ref_name == 'develop' }} - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: files: ./build/logs/clover.xml fail_ci_if_error: true diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index ec18ae54e..7fc647b74 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -140,7 +140,7 @@ jobs: - name: Send coverage report to Codecov if: ${{ success() && matrix.coverage == true }} - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: files: ./build/logs/clover.xml fail_ci_if_error: true From 37ff716803badec0268aa482c4d5b7029e1c5a2f Mon Sep 17 00:00:00 2001 From: jrfnl Date: Wed, 24 Apr 2024 19:30:14 +0200 Subject: [PATCH 2/2] GH Actions: add CodeCov token --- .github/workflows/quicktest.yml | 2 ++ .github/workflows/unit-tests.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/quicktest.yml b/.github/workflows/quicktest.yml index f429e9ef1..fa2a6367e 100644 --- a/.github/workflows/quicktest.yml +++ b/.github/workflows/quicktest.yml @@ -74,3 +74,5 @@ jobs: files: ./build/logs/clover.xml fail_ci_if_error: true verbose: true + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 7fc647b74..4e66f8b39 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -145,3 +145,5 @@ jobs: files: ./build/logs/clover.xml fail_ci_if_error: true verbose: true + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}