Skip to content

Commit

Permalink
bump upload/download artifact workflow action versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
molpopgen committed Jan 3, 2024
1 parent aaf9cb4 commit e2a5219
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
- name: Upload artifacts
if: github.event_name == 'release'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docs_output
path: docs_output/
Expand All @@ -126,7 +126,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Download artifact
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.1.0
with:
# Artifact name
name: docs_output # optional
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
mv $i $(ls $i | sed 's/macosx_12_0/macosx_10_15/g')
done
- name: Upload Wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: macOS-wheel-${{ matrix.python }}
path: dist
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
python setup.py sdist
- name: Upload sdist
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sdist
path: dist
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
#docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux_2_28_x86_64:2022-10-02-69a0972 bash .github/workflows/manylinux/buildwheels.sh
- name: Upload Wheels
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: linux-wheels
path: dist/wheelhouse
Expand All @@ -142,7 +142,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Download sdist
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.1.0
with:
name: sdist
- name: Set up Python
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Download wheels
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.1.0
with:
name: macOS-wheel-${{ matrix.python }}
- name: Set up Python ${{ matrix.python }}
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
with:
access_token: ${{ secrets.GITHUB_TOKEN }}
- name: Download all
uses: actions/download-artifact@v3.0.2
uses: actions/download-artifact@v4.1.0
- name: Move to dist
run: |
mkdir dist
Expand Down

0 comments on commit e2a5219

Please sign in to comment.