From 81d203d03bbc1d3e5d61c92cd5771677bcbf38f8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Apr 2024 21:07:03 +0000 Subject: [PATCH 1/2] chore(deps): bump codecov/codecov-action from 3.1.5 to 4.2.0 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3.1.5 to 4.2.0. - [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.1.5...v4.2.0) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 517d886..843f3a0 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -33,7 +33,7 @@ jobs: - name: Test run: make test-unit - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3.1.5 + uses: codecov/codecov-action@v4.2.0 with: fail_ci_if_error: true files: ./coverage.txt From d7d0b251e5b7c8eec7c05baaffa3083826667094 Mon Sep 17 00:00:00 2001 From: Vinny Sabatini Date: Fri, 5 Apr 2024 16:10:41 -0500 Subject: [PATCH 2/2] chore(ci): use token for codecov-action Version 4.0.0 of the codecov-action removed the tokenless upload feature Ref: https://github.com/codecov/codecov-action/releases/tag/v4.0.0 --- .github/workflows/pipeline.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 843f3a0..388d450 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -34,6 +34,8 @@ jobs: run: make test-unit - name: Upload coverage to Codecov uses: codecov/codecov-action@v4.2.0 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: fail_ci_if_error: true files: ./coverage.txt