diff --git a/.github/workflows/cibw-cc.yaml b/.github/workflows/cibw-cc.yaml index f8b1f51..c8ced62 100644 --- a/.github/workflows/cibw-cc.yaml +++ b/.github/workflows/cibw-cc.yaml @@ -54,12 +54,12 @@ jobs: - if: matrix.platform == 'android' run: pipx install patchelf - - uses: pypa/cibuildwheel@v3.3 + - uses: pypa/cibuildwheel@v3.4 env: CIBW_PLATFORM: ${{ matrix.platform }} CIBW_ARCHS: ${{ matrix.archs || 'auto' }} - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: wheels-${{ matrix.platform }}-${{ matrix.os }} path: dist/*.whl diff --git a/.github/workflows/conda.yml b/.github/workflows/conda.yml index 1a78e84..9d14278 100644 --- a/.github/workflows/conda.yml +++ b/.github/workflows/conda.yml @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v6 - name: Get conda - uses: conda-incubator/setup-miniconda@v3.3.0 + uses: conda-incubator/setup-miniconda@v4.0.0 with: python-version: ${{ matrix.python-version }} channels: conda-forge diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 38a1a3b..d6ffde9 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -32,7 +32,7 @@ jobs: - name: Check metadata run: pipx run twine check dist/* - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: cibw-sdist path: dist/*.tar.gz @@ -78,7 +78,7 @@ jobs: } shell: pwsh - - uses: pypa/cibuildwheel@v3.3 + - uses: pypa/cibuildwheel@v3.4 env: CIBW_ENABLE: cpython-prerelease CIBW_SKIP: "cp39-win_arm64 cp310-win_arm64 cp311-win_arm64 cp39-win32 cp310-win32 cp311-win32 cp312-win32" @@ -91,7 +91,7 @@ jobs: run: git diff --exit-code shell: bash - - uses: actions/upload-artifact@v6 + - uses: actions/upload-artifact@v7 with: name: cibw-wheels-${{ matrix.os }} path: wheelhouse/*.whl @@ -112,14 +112,14 @@ jobs: with: python-version: "3.x" - - uses: actions/download-artifact@v7 + - uses: actions/download-artifact@v8 with: pattern: cibw-* merge-multiple: true path: dist - name: Generate artifact attestation for sdist and wheels - uses: actions/attest-build-provenance@v3 + uses: actions/attest-build-provenance@v4 with: subject-path: "dist/*"