From bdde635f9daae0579164e70f100b6dd8aaaeaa4c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 01:15:14 +0000 Subject: [PATCH 1/2] 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/nox.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nox.yml b/.github/workflows/nox.yml index 965c76e..1dd9113 100644 --- a/.github/workflows/nox.yml +++ b/.github/workflows/nox.yml @@ -72,7 +72,7 @@ jobs: nox -v -e coverage --reuse-existing-virtualenvs --no-install - name: Upload coverage if: ${{ matrix.codecov }} - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: directory: antsibull-docs-parser name: "${{ matrix.session }}" @@ -109,9 +109,9 @@ jobs: run: | nox -v -e coverage --reuse-existing-virtualenvs --no-install - name: Upload coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: - name: nox-test-36 directory: antsibull-docs-parser + name: nox-test-36 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} From ce12fa44728f43ca1b820011d111c62e237f6c58 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Thu, 15 Feb 2024 07:45:52 +0100 Subject: [PATCH 2/2] Need working-directory instead of directory. Ref: https://github.com/codecov/codecov-action/issues/1258#issuecomment-1938602744 --- .github/workflows/nox.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nox.yml b/.github/workflows/nox.yml index 1dd9113..224953e 100644 --- a/.github/workflows/nox.yml +++ b/.github/workflows/nox.yml @@ -74,8 +74,8 @@ jobs: if: ${{ matrix.codecov }} uses: codecov/codecov-action@v4 with: - directory: antsibull-docs-parser name: "${{ matrix.session }}" + working-directory: antsibull-docs-parser env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} nox-test-36: @@ -111,7 +111,7 @@ jobs: - name: Upload coverage uses: codecov/codecov-action@v4 with: - directory: antsibull-docs-parser name: nox-test-36 + working-directory: antsibull-docs-parser env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}