Skip to content
Open
Show file tree
Hide file tree
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 @@ -111,7 +111,7 @@ jobs:
CIBW_ARCHS: "${{ matrix.arch }}"
CIBW_BUILD: "cp310-${{ matrix.build }}*"

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: cibw-${{ runner.os }}-${{ matrix.build }}${{ matrix.arch }}
path: ./wheelhouse/*.whl
Expand All @@ -128,7 +128,7 @@ jobs:
- name: Build SDist
run: pipx run build --sdist

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: cibw-sdist
path: dist/*.tar.gz
Expand Down Expand Up @@ -158,7 +158,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y --no-install-recommends libssl-dev

- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: cibw-sdist
path: dist
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
needs: [build_wheels, build_sdist, test_sdist, bootstrap_build]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
pattern: cibw-*
merge-multiple: true
Expand All @@ -254,7 +254,7 @@ jobs:
id-token: write
attestations: write
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
pattern: cibw-*
merge-multiple: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

- name: Create Pull Request
if: github.ref == 'refs/heads/main' && github.repository == 'scikit-build/cmake-python-distributions'
uses: peter-evans/create-pull-request@v7
uses: peter-evans/create-pull-request@v8
with:
commit-message: '[Bot] Update to ${{ matrix.dependency_nice }} ${{ steps.bump.outputs.version }}'
title: '[Bot] Update to ${{ matrix.dependency_nice }} ${{ steps.bump.outputs.version }}'
Expand Down
Loading