63
63
if : |
64
64
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/package')) ||
65
65
(github.event_name == 'release' && github.event.action == 'published')
66
- uses : actions/upload-artifact@v4
66
+ uses : actions/upload-artifact@v3
67
67
with :
68
68
path : wheelhouse/*.whl
69
69
retention-days : 7
88
88
if : |
89
89
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/package')) ||
90
90
(github.event_name == 'release' && github.event.action == 'published')
91
- uses : actions/upload-artifact@v4
91
+ uses : actions/upload-artifact@v3
92
92
with :
93
93
path : package/dist/*.tar.gz
94
94
retention-days : 7
@@ -113,7 +113,7 @@ jobs:
113
113
if : |
114
114
(github.event_name == 'push' && startsWith(github.ref, 'refs/tags/package')) ||
115
115
(github.event_name == 'release' && github.event.action == 'published')
116
- uses : actions/upload-artifact@v4
116
+ uses : actions/upload-artifact@v3
117
117
with :
118
118
path : testsuite/dist/*.tar.gz
119
119
retention-days : 7
@@ -131,7 +131,7 @@ jobs:
131
131
runs-on : ubuntu-latest
132
132
needs : [build_wheels, build_sdist, build_sdist_tests]
133
133
steps :
134
- - uses : actions/download-artifact@v4
134
+ - uses : actions/download-artifact@v3
135
135
with :
136
136
name : artifact
137
137
path : dist
@@ -160,7 +160,7 @@ jobs:
160
160
runs-on : ubuntu-latest
161
161
needs : [build_wheels, build_sdist, build_sdist_tests]
162
162
steps :
163
- - uses : actions/download-artifact@v4
163
+ - uses : actions/download-artifact@v3
164
164
with :
165
165
name : artifact
166
166
path : dist
@@ -190,7 +190,7 @@ jobs:
190
190
runs-on : ubuntu-latest
191
191
needs : [build_wheels, build_sdist, build_sdist_tests]
192
192
steps :
193
- - uses : actions/download-artifact@v4
193
+ - uses : actions/download-artifact@v3
194
194
with :
195
195
name : artifact
196
196
path : dist
@@ -216,7 +216,7 @@ jobs:
216
216
runs-on : ubuntu-latest
217
217
needs : [build_wheels, build_sdist, build_sdist_tests]
218
218
steps :
219
- - uses : actions/download-artifact@v4
219
+ - uses : actions/download-artifact@v3
220
220
with :
221
221
name : artifact
222
222
path : dist
0 commit comments