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