From a8c4317e8d7a6de74a5f76095b211242a11822db Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Dec 2024 13:39:09 +0000 Subject: [PATCH] chore(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/deno.yml | 2 +- .github/workflows/python.yml | 2 +- .github/workflows/typescript.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deno.yml b/.github/workflows/deno.yml index eef4695e6..713340506 100644 --- a/.github/workflows/deno.yml +++ b/.github/workflows/deno.yml @@ -31,7 +31,7 @@ jobs: - name: Collect coverage run: deno task coverage if: ${{ always() }} - - uses: codecov/codecov-action@v4 + - uses: codecov/codecov-action@v5 if: ${{ always() }} with: files: coverage.lcov diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index f182f0583..dbac94e8f 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -40,6 +40,6 @@ jobs: - name: Run tests and collect coverage run: pipenv run pytest -n 4 --cov=./datalad_service --cov-report=xml:coverage.xml ./tests - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/typescript.yml b/.github/workflows/typescript.yml index 91e826b58..ce6ba6e54 100644 --- a/.github/workflows/typescript.yml +++ b/.github/workflows/typescript.yml @@ -20,6 +20,6 @@ jobs: - run: yarn install - run: yarn test --coverage - name: Upload coverage reports to Codecov with GitHub Action - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }}