Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Build SDist
run: pipx run build --sdist

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: cibw-sdist
path: dist/*.tar.gz
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
pip install yq
tomlq -r '.project."optional-dependencies".test[]' pyproject.toml | xargs -d '\n' pip install

- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: cibw-sdist
path: dist
Expand All @@ -72,7 +72,7 @@ jobs:
needs: [build_wheels, make_sdist, test_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
path: all

Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
CIBW_TEST_SKIP: "${{ matrix.test-skip }}"

- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: wheelhouse/*.whl
Expand All @@ -135,7 +135,7 @@ jobs:
if: github.event_name == 'release' && github.event.action == 'published'

steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
pattern: cibw-*
path: dist
Expand Down
Loading