Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/upload-artifact from 3 to 4 #1029

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-and-publish.yml
Expand Up @@ -55,7 +55,7 @@ jobs:
env:
CIBW_SKIP: "cp36-*" # skip 3.6 wheels
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: ./wheelhouse/*.whl
Expand All @@ -81,7 +81,7 @@ jobs:
do
python setup.py bdist_wheel --plat-name $platform
done
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: ./dist/*.whl
Expand All @@ -102,7 +102,7 @@ jobs:
- name: Build source distribution
run: python setup.py sdist
- name: Store the source distribution
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-package-distributions
path: dist
Expand Down