Skip to content

Commit 0c32bc8

Browse files
[PR #10281/d54b3e27 backport][3.11] Update workflow to use upload-artifact v4 and download-artifact v4 (#10288)
**This is a backport of PR #10281 as merged into master (d54b3e2).** <!-- Thank you for your contribution! --> ## What do these changes do? This updates the ci/cd workflow to use the upload-artifact v4 and download-artifact v4 github actions. The currently used upload-artifact and download-artifact will no longer work at the end of next month. The changes are needed since v4 no longer has mutable artifacts, which was used to collect wheels from different architectures. Fix #8588, Fix #8589, Fix #9009, Fix #10189, Fix #10191 ## Are there changes in behavior for the user? No, the ci/cd workflow has been tested although without publishing. ## Related issue number <!-- Are there any issues opened that will be resolved by merging this change? --> <!-- Remember to prefix with 'Fixes' if it should close the issue (e.g. 'Fixes #123'). --> ## Checklist - [x] I think the code is well written - [ ] Unit tests for the changes exist - [ ] Documentation reflects the changes - [ ] If you provide code modification, please add yourself to `CONTRIBUTORS.txt` * The format is &lt;Name&gt; &lt;Surname&gt;. * Please keep alphabetical order, the file is sorted by names. - [x] Add a new news fragment into the `CHANGES/` folder * name it `<issue_or_pr_num>.<type>.rst` (e.g. `588.bugfix.rst`) * if you don't have an issue number, change it to the pull request number after creating the PR * `.bugfix`: A bug fix for something the maintainers deemed an improper undesired behavior that got corrected to match pre-agreed expectations. * `.feature`: A new behavior, public APIs. That sort of stuff. * `.deprecation`: A declaration of future API removals and breaking changes in behavior. * `.breaking`: When something public is removed in a breaking way. Could be deprecated in an earlier release. * `.doc`: Notable updates to the documentation structure or build process. * `.packaging`: Notes for downstreams about unobvious side effects and tooling. Changes in the test invocation considerations and runtime assumptions. * `.contrib`: Stuff that affects the contributor experience. e.g. Running tests, building the docs, setting up the development environment. * `.misc`: Changes that are hard to assign to any of the above categories. * Make sure to use full sentences with correct case and punctuation, for example: ```rst Fixed issue with non-ascii contents in doctest text files -- by :user:`contributor-gh-handle`. ``` Use the past tense or the present tense a non-imperative mood, referring to what's changed compared to the last released version of this project. Co-authored-by: Simon Lamon <[email protected]>
1 parent b103bbc commit 0c32bc8

File tree

2 files changed

+18
-11
lines changed

2 files changed

+18
-11
lines changed

.github/workflows/ci-cd.yml

+17-11
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
run: |
115115
make generate-llhttp
116116
- name: Upload llhttp generated files
117-
uses: actions/upload-artifact@v3
117+
uses: actions/upload-artifact@v4
118118
with:
119119
name: llhttp
120120
path: vendor/llhttp/build
@@ -177,7 +177,7 @@ jobs:
177177
python -m pip install -r requirements/test.in -c requirements/test.txt
178178
- name: Restore llhttp generated files
179179
if: ${{ matrix.no-extensions == '' }}
180-
uses: actions/download-artifact@v3
180+
uses: actions/download-artifact@v4
181181
with:
182182
name: llhttp
183183
path: vendor/llhttp/build/
@@ -264,7 +264,7 @@ jobs:
264264
run: |
265265
python -m pip install -r requirements/test.in -c requirements/test.txt
266266
- name: Restore llhttp generated files
267-
uses: actions/download-artifact@v3
267+
uses: actions/download-artifact@v4
268268
with:
269269
name: llhttp
270270
path: vendor/llhttp/build/
@@ -325,7 +325,7 @@ jobs:
325325
python -m
326326
pip install -r requirements/cython.in -c requirements/cython.txt
327327
- name: Restore llhttp generated files
328-
uses: actions/download-artifact@v3
328+
uses: actions/download-artifact@v4
329329
with:
330330
name: llhttp
331331
path: vendor/llhttp/build/
@@ -336,9 +336,9 @@ jobs:
336336
run: |
337337
python -m build --sdist
338338
- name: Upload artifacts
339-
uses: actions/upload-artifact@v3
339+
uses: actions/upload-artifact@v4
340340
with:
341-
name: dist
341+
name: dist-sdist
342342
path: dist
343343

344344
build-wheels:
@@ -388,7 +388,7 @@ jobs:
388388
python -m
389389
pip install -r requirements/cython.in -c requirements/cython.txt
390390
- name: Restore llhttp generated files
391-
uses: actions/download-artifact@v3
391+
uses: actions/download-artifact@v4
392392
with:
393393
name: llhttp
394394
path: vendor/llhttp/build/
@@ -399,9 +399,15 @@ jobs:
399399
uses: pypa/[email protected]
400400
env:
401401
CIBW_ARCHS_MACOS: x86_64 arm64 universal2
402-
- uses: actions/upload-artifact@v3
402+
- name: Upload wheels
403+
uses: actions/upload-artifact@v4
403404
with:
404-
name: dist
405+
name: >-
406+
dist-${{ matrix.os }}-${{
407+
matrix.qemu
408+
&& matrix.qemu
409+
|| 'native'
410+
}}
405411
path: ./wheelhouse/*.whl
406412

407413
deploy:
@@ -426,10 +432,10 @@ jobs:
426432
run: |
427433
echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token
428434
- name: Download distributions
429-
uses: actions/download-artifact@v3
435+
uses: actions/download-artifact@v4
430436
with:
431-
name: dist
432437
path: dist
438+
pattern: dist-*
433439
- name: Collected dists
434440
run: |
435441
tree dist

CHANGES/10281.contrib.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The CI/CD workflow has been updated to use `upload-artifact` v4 and `download-artifact` v4 GitHub Actions -- by :user:`silamon`.

0 commit comments

Comments
 (0)