From 16fd22b2b1f4d376378b9dabd8741197ba4f6c7f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 09:24:13 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3 to 5 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' 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..5cf0799 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@v5 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@v5 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..c07db7f 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@v5 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@v5 with: path: ./ch08/first-python-package/wheels/*.whl # Update to match root of package