Skip to content

Commit

Permalink
Upgrade 'upload-artifact' action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
leon-vv committed Oct 27, 2024
1 parent 33b6cc4 commit 86e2eaf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ jobs:
- name: Run tests
run: python -m unittest tests/*.py
- name: Upload wheel artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ubuntu-wheel
path: wheelhouse/*.whl
- name: Upload source distribution
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: source-distribution
path: dist/*.tar.gz
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Run tests
run: python -m unittest (get-item tests/*.py)
- name: Upload wheel artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: windows-wheel
path: dist/*.whl
Expand All @@ -93,7 +93,7 @@ jobs:
- name: Run tests
run: python -m unittest tests/*.py
- name: Upload wheel artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: macos-wheel
path: dist/*.whl
Expand Down

0 comments on commit 86e2eaf

Please sign in to comment.