From 8d284257a7328065865b7c35d20d40948e110e5e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 20:03:49 +0000 Subject: [PATCH 1/2] 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] --- .github/workflows/integration-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 1dfd71d2..5f98f736 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -110,7 +110,7 @@ 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 }} From 801da97fc8cade5c84af94cd9137d739ecc4e23c Mon Sep 17 00:00:00 2001 From: d33bs Date: Wed, 20 Nov 2024 09:58:38 -0700 Subject: [PATCH 2/2] use files parameter for coverage report --- .github/workflows/integration-test.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 5f98f736..202b92b8 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -115,8 +115,7 @@ jobs: 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