Skip to content

Commit 877c06d

Browse files
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](actions/upload-artifact@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] <[email protected]>
1 parent 66ba04c commit 877c06d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ch07-packaging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
run: python -m build --sdist
9797
working-directory: ch07/first-python-package # You don't need this in your package
9898

99-
- uses: actions/upload-artifact@v3
99+
- uses: actions/upload-artifact@v6
100100
with:
101101
path: ch07/first-python-package/dist/*.tar.gz
102102

@@ -121,7 +121,7 @@ jobs:
121121
run: python -m cibuildwheel --output-dir wheels
122122
working-directory: ch07/first-python-package # You don't need this in your package
123123

124-
- uses: actions/upload-artifact@v3
124+
- uses: actions/upload-artifact@v6
125125
with:
126126
path: ./ch07/first-python-package/wheels/*.whl # Update to match root of package
127127

.github/workflows/ch08-packaging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
run: python -m build --sdist
9797
working-directory: ch08/first-python-package # You don't need this in your package
9898

99-
- uses: actions/upload-artifact@v3
99+
- uses: actions/upload-artifact@v6
100100
with:
101101
path: ch08/first-python-package/dist/*.tar.gz
102102

@@ -121,7 +121,7 @@ jobs:
121121
run: python -m cibuildwheel --output-dir wheels
122122
working-directory: ch08/first-python-package # You don't need this in your package
123123

124-
- uses: actions/upload-artifact@v3
124+
- uses: actions/upload-artifact@v6
125125
with:
126126
path: ./ch08/first-python-package/wheels/*.whl # Update to match root of package
127127

0 commit comments

Comments
 (0)