From afa0930312f74cdb646bdef0e510370c12316186 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Feb 2026 14:29:02 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/pytest.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 28477c8..96f86ae 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - name: Build wheel with hatch run: docker run --rm -v "${{ github.workspace }}:/app" myapp:hatch build - name: Upload wheel - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: wheel path: dist/*.whl diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 8b9d488..988cb08 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -29,7 +29,7 @@ jobs: # Always upload the coverage XML as an artifact so it can be inspected even if Codecov is skipped. - name: Upload coverage artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: coverage-xml path: ${{ github.workspace }}/coverage.xml