Skip to content

Commit c1e3f8d

Browse files
committed
Revert "chore: Update GitHub Actions to use version 4 for checkout and upload-artifact"
This reverts commit 9dc46cd.
1 parent e39ec1c commit c1e3f8d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/cd.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- s390x
1717
- ppc64le
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v3
2020
- uses: actions/setup-python@v4
2121
with:
2222
python-version: '3.10'
@@ -28,7 +28,7 @@ jobs:
2828
sccache: 'true'
2929
manylinux: auto
3030
- name: Upload wheels
31-
uses: actions/upload-artifact@v4
31+
uses: actions/upload-artifact@v3
3232
with:
3333
name: wheels
3434
path: dist
@@ -40,7 +40,7 @@ jobs:
4040
- x64
4141
- x86
4242
steps:
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@v3
4444
- uses: actions/setup-python@v4
4545
with:
4646
python-version: '3.10'
@@ -52,7 +52,7 @@ jobs:
5252
args: '--release --out dist --find-interpreter'
5353
sccache: 'true'
5454
- name: Upload wheels
55-
uses: actions/upload-artifact@v4
55+
uses: actions/upload-artifact@v3
5656
with:
5757
name: wheels
5858
path: dist
@@ -64,7 +64,7 @@ jobs:
6464
- x86_64
6565
- aarch64
6666
steps:
67-
- uses: actions/checkout@v4
67+
- uses: actions/checkout@v3
6868
- uses: actions/setup-python@v4
6969
with:
7070
python-version: '3.10'
@@ -75,7 +75,7 @@ jobs:
7575
args: '--release --out dist --find-interpreter'
7676
sccache: 'true'
7777
- name: Upload wheels
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v3
7979
with:
8080
name: wheels
8181
path: dist
@@ -86,7 +86,7 @@ jobs:
8686
if: 'startsWith(github.ref, ''refs/tags/'')'
8787
needs: [linux, windows, macos]
8888
steps:
89-
- uses: actions/download-artifact@v4
89+
- uses: actions/download-artifact@v3
9090
with:
9191
name: wheels
9292
- name: Create Release
@@ -113,7 +113,7 @@ jobs:
113113
if: startsWith(github.ref, 'refs/tags/')
114114
needs: [linux, windows, macos]
115115
steps:
116-
- uses: actions/download-artifact@v4
116+
- uses: actions/download-artifact@v3
117117
with:
118118
name: wheels
119119
- name: Publish to PyPI

0 commit comments

Comments
 (0)