From e82552077d2d4531034331d175a72da3622d4b7d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 19:38:05 +0000 Subject: [PATCH 1/2] chore(deps): 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] --- .github/workflows/python.yml | 2 +- .github/workflows/typescript.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 64ee548ea2..e562cfcbdf 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@v3 + uses: codecov/codecov-action@v4 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/typescript.yml b/.github/workflows/typescript.yml index 405e8e5e0d..459106db46 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@v3 + uses: codecov/codecov-action@v4 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} From e87dfc63bd2758082e7cea35471efbaad7145234 Mon Sep 17 00:00:00 2001 From: Chris Markiewicz Date: Thu, 29 Feb 2024 14:39:48 -0500 Subject: [PATCH 2/2] chore(deps): Use codecov token parameter --- .github/workflows/python.yml | 4 ++-- .github/workflows/typescript.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index e562cfcbdf..c1289f78c7 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -41,5 +41,5 @@ jobs: 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 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + with: + token: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/typescript.yml b/.github/workflows/typescript.yml index 459106db46..aa45aa6461 100644 --- a/.github/workflows/typescript.yml +++ b/.github/workflows/typescript.yml @@ -21,5 +21,5 @@ jobs: - run: yarn test --coverage - name: Upload coverage reports to Codecov with GitHub Action uses: codecov/codecov-action@v4 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + with: + token: ${{ secrets.CODECOV_TOKEN }}