From a7afacdc9f48a1b84c8a13edc1385fa1e8e63f04 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 17:28:36 +0000 Subject: [PATCH 1/2] chore(deps): update codecov/codecov-action action to v5 --- .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 6c14958..2dd16f4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -196,7 +196,7 @@ jobs: report=${COVERAGE_REPORT_FILE} outputs report - name: Upload coverage results (to Codecov.io) - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 # if: steps.vars.outputs.HAS_CODECOV_TOKEN with: token: ${{ secrets.CODECOV_TOKEN }} From 49e54f7f9a7dcbca7dce3838a0ee60264e4554ce Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Sat, 16 Nov 2024 08:37:52 +0100 Subject: [PATCH 2/2] ci: fix deprecated codecov argument --- .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 2dd16f4..bc5859e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -200,7 +200,7 @@ jobs: # if: steps.vars.outputs.HAS_CODECOV_TOKEN with: token: ${{ secrets.CODECOV_TOKEN }} - file: ${{ steps.coverage.outputs.report }} + files: ${{ steps.coverage.outputs.report }} ## flags: IntegrationTests, UnitTests, ${{ steps.vars.outputs.CODECOV_FLAGS }} flags: ${{ steps.vars.outputs.CODECOV_FLAGS }} name: codecov-umbrella