From a54387c10eedb24b2907f8c863fd85059c7a7933 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 00:24:22 +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/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f92e19..a7dc2aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,7 +92,7 @@ jobs: build-coverage/smesh_run smesh_example.cfg build-coverage/smesh_run smesh_test.cfg cmake --build build-coverage/ --target process-coverage - - uses: codecov/codecov-action@v3 + - uses: codecov/codecov-action@v4 if: ${{ matrix.test_type == 'coverage' }} with: files: ./build-coverage/lcov.info From 253e76e9f985c5bcf269d774e87f7a314bad2bb8 Mon Sep 17 00:00:00 2001 From: Michael Schlottke-Lakemper Date: Thu, 1 Feb 2024 06:10:13 +0100 Subject: [PATCH 2/3] Add Codecov token to Codecov action --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7dc2aa..0618cfc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,6 +98,8 @@ jobs: files: ./build-coverage/lcov.info flags: unittests name: codecov-umbrella + end: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - name: Coveralls if: ${{ matrix.test_type == 'coverage' }} uses: coverallsapp/github-action@master From c1a7c66ecd795df9f8ce9badcd00af301c5d5a5e Mon Sep 17 00:00:00 2001 From: Michael Schlottke-Lakemper Date: Thu, 1 Feb 2024 06:11:44 +0100 Subject: [PATCH 3/3] Fix workflow typo --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0618cfc..0aaf91f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,7 +98,7 @@ jobs: files: ./build-coverage/lcov.info flags: unittests name: codecov-umbrella - end: + env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - name: Coveralls if: ${{ matrix.test_type == 'coverage' }}