From ede05815afee0a3753b133722d3f0320bf18c1f8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 20 Nov 2024 16:13:37 +0000 Subject: [PATCH 1/2] 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/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index d914f876..f736c02e 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -75,7 +75,7 @@ jobs: run: python -m pytest -v --cov=openff --cov-config=setup.cfg openff/bespokefit/_tests/ --cov-report=xml - name: Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} file: ./coverage.xml From 7f255f3f5cdd0d39e5f577ecad01832a712b6eba Mon Sep 17 00:00:00 2001 From: Matt Thompson Date: Wed, 20 Nov 2024 10:14:37 -0600 Subject: [PATCH 2/2] Update .github/workflows/CI.yaml --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index f736c02e..5d402f9f 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -78,7 +78,7 @@ jobs: uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} - file: ./coverage.xml + files: ./coverage.xml fail_ci_if_error: false - name: Run Integration Tests