Skip to content

Commit

Permalink
[3.10] Downgrade upload/download artifact to v3 to fix CI (#8532)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Jul 22, 2024
1 parent 948a4c5 commit 088f734
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
run: |
make generate-llhttp
- name: Upload llhttp generated files
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: llhttp
path: vendor/llhttp/build
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
python -m pip install -r requirements/test.in -c requirements/test.txt
- name: Restore llhttp generated files
if: ${{ matrix.no-extensions == '' }}
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: llhttp
path: vendor/llhttp/build/
Expand Down Expand Up @@ -280,7 +280,7 @@ jobs:
python -m
pip install -r requirements/cython.in -c requirements/cython.txt
- name: Restore llhttp generated files
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: llhttp
path: vendor/llhttp/build/
Expand All @@ -291,7 +291,7 @@ jobs:
run: |
python -m build --sdist
- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: dist
path: dist
Expand Down Expand Up @@ -343,7 +343,7 @@ jobs:
python -m
pip install -r requirements/cython.in -c requirements/cython.txt
- name: Restore llhttp generated files
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: llhttp
path: vendor/llhttp/build/
Expand All @@ -354,7 +354,7 @@ jobs:
uses: pypa/cibuildwheel@v2.19.2
env:
CIBW_ARCHS_MACOS: x86_64 arm64 universal2
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
name: dist
path: ./wheelhouse/*.whl
Expand All @@ -381,7 +381,7 @@ jobs:
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | gh auth login --with-token
- name: Download distributions
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: dist
path: dist
Expand Down

0 comments on commit 088f734

Please sign in to comment.