From 877c06db2deb63f7e165f79f17e328638c2e9e96 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 09:02:14 +0000 Subject: [PATCH] Bump actions/upload-artifact from 3 to 6 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...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/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..ef48642 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@v6 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@v6 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..06dbfd0 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@v6 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@v6 with: path: ./ch08/first-python-package/wheels/*.whl # Update to match root of package