From 68e902eecaabefc1cb57440815fb3e70668507d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 19 Jul 2026 16:41:05 +0000 Subject: [PATCH] chore(deps): bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55da77a..ba5891c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -96,7 +96,7 @@ jobs: maturin build --release --strip - name: Upload wheel - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: openqbw-wheel-${{ matrix.os }} path: OpenQBW/target/wheels/*.whl diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6207dc5..cfcccde 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -71,7 +71,7 @@ jobs: maturin build --release --strip --out dist - name: Upload wheel artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: openqbw-wheel-${{ matrix.os }} path: crates/openqbw-py/dist/*.whl @@ -97,7 +97,7 @@ jobs: maturin sdist --out dist - name: Upload sdist artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: openqbw-sdist path: crates/openqbw-py/dist/*.tar.gz