From b9a94654e6ddc3a813d92d8c6a7c67366ee560cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 16:22:40 -0500 Subject: [PATCH] Bump codecov/codecov-action from 3 to 4 (#379) * Bump codecov/codecov-action from 3 to 4 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [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...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Update test.yaml Add CODECOV_TOKEN for codecov-action@v4. --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jeremy M. G. Leung <63817169+jeremyleung521@users.noreply.github.com> --- .github/workflows/test.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 8fc65448..7084bdd9 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -76,12 +76,14 @@ jobs: pytest -v --cov=westpa --cov-report=xml --color=yes tests - name: CodeCov - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: file: ./coverage.xml flags: unittests name: codecov-{{ '${{ matrix.os }}' }}-py{{ '${{ matrix.python-version }}' }} fail_ci_if_error: false + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} install-dev: strategy: