@@ -113,7 +113,7 @@ jobs:
113
113
run : sphinx-build -Ean -b html -j auto -D todo_include_todos=0 ./docs ./docs/_build/html
114
114
115
115
- name : Archive artifacts
116
- uses : actions/upload-artifact@v2
116
+ uses : actions/upload-artifact@v4
117
117
with :
118
118
name : html-docs
119
119
path : ./docs/_build/html
@@ -159,13 +159,13 @@ jobs:
159
159
160
160
- name : Archive distribution artifacts
161
161
# Archive distribution files for use by auto (or manual) PyPI upload
162
- uses : actions/upload-artifact@v3
162
+ uses : actions/upload-artifact@v4
163
163
with :
164
164
name : pypi-dist
165
165
path : ./dist
166
166
167
167
- name : Archive changelog artifacts
168
- uses : actions/upload-artifact@v3
168
+ uses : actions/upload-artifact@v4
169
169
with :
170
170
name : release_notes
171
171
path : release_notes.md
@@ -199,7 +199,7 @@ jobs:
199
199
200
200
# Archive distribution files. Will upload in a downstream job.
201
201
- name : Archive distribution artifacts
202
- uses : actions/upload-artifact@v3
202
+ uses : actions/upload-artifact@v4
203
203
with :
204
204
name : conda-dist
205
205
path : .build
@@ -214,19 +214,19 @@ jobs:
214
214
215
215
steps :
216
216
- name : Download documentation
217
- uses : actions/download-artifact@v3
217
+ uses : actions/download-artifact@v4
218
218
with :
219
219
name : html-docs
220
220
path : ./html-docs
221
221
222
222
- name : Download release
223
- uses : actions/download-artifact@v3
223
+ uses : actions/download-artifact@v4
224
224
with :
225
225
name : pypi-dist
226
226
path : ./dist
227
227
228
228
- name : Download release notes
229
- uses : actions/download-artifact@v3
229
+ uses : actions/download-artifact@v4
230
230
with :
231
231
name : release_notes
232
232
@@ -292,7 +292,7 @@ jobs:
292
292
293
293
# Download release files
294
294
- name : Download release
295
- uses : actions/download-artifact@v3
295
+ uses : actions/download-artifact@v4
296
296
with :
297
297
name : conda-dist
298
298
path : ./dist
0 commit comments