From 8b18f44d67876037ed71fa36c290aa2b00fa4c49 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Mar 2026 18:43:36 +0000 Subject: [PATCH] Bump actions/download-artifact from 7 to 8 Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 7 to 8. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/test_python.yml | 2 +- .github/workflows/wheels.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_python.yml b/.github/workflows/test_python.yml index 5fe93ab3..2880e84b 100644 --- a/.github/workflows/test_python.yml +++ b/.github/workflows/test_python.yml @@ -122,7 +122,7 @@ jobs: pip-install: pytest - name: Download wheel - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: path: dist pattern: wheel-${{ runner.os }}-${{ runner.arch }}-* diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index e3e2b579..c1ec0a59 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -31,14 +31,14 @@ jobs: steps: - name: Download sdist artifact - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: path: dist pattern: sdist merge-multiple: true - name: Download wheel artifacts - uses: actions/download-artifact@v7 + uses: actions/download-artifact@v8 with: path: dist pattern: wheel-*