From 5cd04e4d62c3ac6abd3e71b70906653383bb102b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 09:07:27 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...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/ch07-packaging.yml | 4 ++-- .github/workflows/ch08-packaging.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ch07-packaging.yml b/.github/workflows/ch07-packaging.yml index 41ae9bf..2d4509a 100644 --- a/.github/workflows/ch07-packaging.yml +++ b/.github/workflows/ch07-packaging.yml @@ -96,7 +96,7 @@ jobs: run: python -m build --sdist working-directory: ch07/first-python-package # You don't need this in your package - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v7 with: path: ch07/first-python-package/dist/*.tar.gz @@ -121,7 +121,7 @@ jobs: run: python -m cibuildwheel --output-dir wheels working-directory: ch07/first-python-package # You don't need this in your package - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v7 with: path: ./ch07/first-python-package/wheels/*.whl # Update to match root of package diff --git a/.github/workflows/ch08-packaging.yml b/.github/workflows/ch08-packaging.yml index 3410f2c..74e71d4 100644 --- a/.github/workflows/ch08-packaging.yml +++ b/.github/workflows/ch08-packaging.yml @@ -96,7 +96,7 @@ jobs: run: python -m build --sdist working-directory: ch08/first-python-package # You don't need this in your package - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v7 with: path: ch08/first-python-package/dist/*.tar.gz @@ -121,7 +121,7 @@ jobs: run: python -m cibuildwheel --output-dir wheels working-directory: ch08/first-python-package # You don't need this in your package - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v7 with: path: ./ch08/first-python-package/wheels/*.whl # Update to match root of package