From 4c0a65277a5963e7c2ed0058085b8ae3c9025c47 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 22:44:11 +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/antsibull-build.yml | 2 +- .github/workflows/nox.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/antsibull-build.yml b/.github/workflows/antsibull-build.yml index 0a43a321..585c2844 100644 --- a/.github/workflows/antsibull-build.yml +++ b/.github/workflows/antsibull-build.yml @@ -80,7 +80,7 @@ jobs: working-directory: antsibull - name: Upload coverage - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: directory: antsibull env: diff --git a/.github/workflows/nox.yml b/.github/workflows/nox.yml index 6241e5af..40f14f80 100644 --- a/.github/workflows/nox.yml +++ b/.github/workflows/nox.yml @@ -75,7 +75,7 @@ jobs: nox -v -e coverage - name: Upload coverage if: ${{ matrix.codecov }} - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: directory: antsibull name: "${{ matrix.session }}" From 3004bac87bd385f30072c678644afc152a816102 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Thu, 15 Feb 2024 07:45:50 +0100 Subject: [PATCH 2/2] Need working-directory instead of directory. Ref: https://github.com/codecov/codecov-action/issues/1258#issuecomment-1938602744 --- .github/workflows/antsibull-build.yml | 2 +- .github/workflows/nox.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/antsibull-build.yml b/.github/workflows/antsibull-build.yml index 585c2844..b225f26c 100644 --- a/.github/workflows/antsibull-build.yml +++ b/.github/workflows/antsibull-build.yml @@ -82,6 +82,6 @@ jobs: - name: Upload coverage uses: codecov/codecov-action@v4 with: - directory: antsibull + working-directory: antsibull env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} diff --git a/.github/workflows/nox.yml b/.github/workflows/nox.yml index 40f14f80..0d900a21 100644 --- a/.github/workflows/nox.yml +++ b/.github/workflows/nox.yml @@ -77,7 +77,7 @@ jobs: if: ${{ matrix.codecov }} uses: codecov/codecov-action@v4 with: - directory: antsibull + working-directory: antsibull name: "${{ matrix.session }}" env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}