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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
CIBW_ARCHS: "${{ matrix.arch }}"
CIBW_BUILD: "cp310-${{ matrix.build }}*"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
if: (!matrix.use_qemu) || fromJSON(env.USE_QEMU)
with:
name: cibw-${{ runner.os }}-${{ matrix.build }}${{ matrix.arch }}
Expand All @@ -157,7 +157,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 @@ -187,7 +187,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y --no-install-recommends libssl-dev

- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
name: cibw-sdist
path: dist
Expand Down Expand Up @@ -263,7 +263,7 @@ jobs:
needs: [build_wheels, build_sdist, test_sdist, bootstrap_build]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
pattern: cibw-*
merge-multiple: true
Expand All @@ -283,7 +283,7 @@ jobs:
id-token: write
attestations: write
steps:
- uses: actions/download-artifact@v5
- uses: actions/download-artifact@v6
with:
pattern: cibw-*
merge-multiple: true
Expand Down