Skip to content

Commit

Permalink
Revert "chore: Update GitHub Actions to use version 4 for checkout an…
Browse files Browse the repository at this point in the history
…d upload-artifact"

This reverts commit 9dc46cd.
  • Loading branch information
maxblan committed Sep 15, 2024
1 parent e39ec1c commit c1e3f8d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- s390x
- ppc64le
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand All @@ -28,7 +28,7 @@ jobs:
sccache: 'true'
manylinux: auto
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand All @@ -40,7 +40,7 @@ jobs:
- x64
- x86
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand All @@ -52,7 +52,7 @@ jobs:
args: '--release --out dist --find-interpreter'
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand All @@ -64,7 +64,7 @@ jobs:
- x86_64
- aarch64
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand All @@ -75,7 +75,7 @@ jobs:
args: '--release --out dist --find-interpreter'
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist
Expand All @@ -86,7 +86,7 @@ jobs:
if: 'startsWith(github.ref, ''refs/tags/'')'
needs: [linux, windows, macos]
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: wheels
- name: Create Release
Expand All @@ -113,7 +113,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
needs: [linux, windows, macos]
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: wheels
- name: Publish to PyPI
Expand Down

0 comments on commit c1e3f8d

Please sign in to comment.