Skip to content

Commit

Permalink
Bump actions/upload-artifact from 2 to 3 (#18)
Browse files Browse the repository at this point in the history
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 2 to 3.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v2...v3)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored May 12, 2022
1 parent c14052a commit 2a6f5ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ch07-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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@v2
- uses: actions/upload-artifact@v3
with:
path: ch07/first-python-package/dist/*.tar.gz

Expand All @@ -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@v2
- uses: actions/upload-artifact@v3
with:
path: ./ch07/first-python-package/wheels/*.whl # Update to match root of package

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ch08-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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@v2
- uses: actions/upload-artifact@v3
with:
path: ch08/first-python-package/dist/*.tar.gz

Expand All @@ -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@v2
- uses: actions/upload-artifact@v3
with:
path: ./ch08/first-python-package/wheels/*.whl # Update to match root of package

Expand Down

0 comments on commit 2a6f5ef

Please sign in to comment.