From 0388f50811136f5ce7278636be317f462538b5af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 Nov 2024 10:08:58 -0700 Subject: [PATCH] build(deps): bump codecov/codecov-action from 4 to 5 (#478) * build(deps): bump codecov/codecov-action from 4 to 5 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5. - [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/v4...v5) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * use files parameter for coverage report --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: d33bs --- .github/workflows/integration-test.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 1dfd71d2..202b92b8 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -110,13 +110,12 @@ jobs: - name: Upload coverage to Codecov # For the target version and ubuntu, upload coverage to Codecov if: (matrix.os == 'ubuntu-22.04') && (matrix.python-version == env.TARGET_PYTHON_VERSION ) - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 env: OS: ${{ matrix.os }} PYTHON: ${{ matrix.python-version }} with: - file: ./coverage.xml - files: ./coverage1.xml,./coverage2.xml + files: ./coverage.xml directory: ./coverage/reports/ env_vars: OS,PYTHON fail_ci_if_error: true