Skip to content

Commit

Permalink
Merge pull request #167 from philrhc/upload-artifact-v4
Browse files Browse the repository at this point in the history
updates actions/upload-artifact to v4
  • Loading branch information
sphaero authored Dec 9, 2024
2 parents c928d05 + e434f79 commit de0e901
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
pip install build
python -m build --sdist .
- name: Upload source package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: distribution
path: dist/
Expand All @@ -31,7 +31,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Download source package
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: distribution
path: dist/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
pip install build
python -m build --sdist .
- name: Upload source package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: distribution
path: dist/
Expand All @@ -33,15 +33,15 @@ jobs:
max-parallel: 1 # tests interfere with each other if run in parallel
matrix:
# order matters - this setup minimizes the interference between jobs
python-version: [2.7, 3.5, 3.6, 3.7, 3.8, 3.9]
python-version: [3.8, 3.9]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
with:
name: distribution
path: dist/
Expand Down

0 comments on commit de0e901

Please sign in to comment.