Skip to content
Closed
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
22 changes: 11 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.x"
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
build: ""

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0 # required for versioneer to find tags

Expand All @@ -106,12 +106,12 @@ jobs:
if: matrix.arch == 'ppc64le' || matrix.arch == 'riscv64' || matrix.arch == 's390x'

- name: Build wheels
uses: pypa/cibuildwheel@v3.2
uses: pypa/cibuildwheel@v3.3
env:
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 @@ -121,14 +121,14 @@ jobs:
needs: [lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0 # required for versioneer to find tags

- 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 All @@ -143,7 +143,7 @@ jobs:
python: ["3.8", "3.13"]

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
enable-cache: false
Expand All @@ -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 All @@ -183,7 +183,7 @@ jobs:
os: ["ubuntu-latest", "windows-latest", "macos-latest"]

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
id: python
with:
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
6 changes: 3 additions & 3 deletions .github/workflows/update-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
- dependency: "openssl"
dependency_nice: "OpenSSL"
steps:
- uses: actions/checkout@v5
- uses: wntrblm/nox@2025.10.16
- uses: actions/checkout@v6
- uses: wntrblm/nox@2025.11.12
- name: "Run update: bump ${{ matrix.dependency_nice }}"
id: bump
run: |
Expand All @@ -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