From 3c0fc4b7e1a3615273315a33c7104404c8cee844 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Oct 2025 02:03:55 +0000 Subject: [PATCH 1/2] chore(deps): bump the actions group across 1 directory with 5 updates Bumps the actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `1` | `5` | | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | `6` | `7` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) | `3.1` | `3.2` | Updates `actions/checkout` from 1 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v1...v5) Updates `astral-sh/setup-uv` from 6 to 7 - [Release notes](https://github.com/astral-sh/setup-uv/releases) - [Commits](https://github.com/astral-sh/setup-uv/compare/v6...v7) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v5...v6) Updates `pypa/cibuildwheel` from 3.1 to 3.2 - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v3.1...v3.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: astral-sh/setup-uv dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/cibuildwheel dependency-version: '3.2' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/configure.yml | 2 +- .github/workflows/nightlies.yml | 6 +++--- .github/workflows/pip.yml | 10 +++++----- .github/workflows/reusable-standard.yml | 2 +- .github/workflows/tests-cibw.yml | 6 +++--- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15f031ad6c..5ea84e07f5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -191,7 +191,7 @@ jobs: allow-prereleases: true - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 with: enable-cache: true @@ -778,7 +778,7 @@ jobs: timeout-minutes: 90 steps: - - uses: actions/checkout@v1 # v1 is required to run inside docker + - uses: actions/checkout@v5 # v1 is required to run inside docker - name: Install requirements run: | diff --git a/.github/workflows/configure.yml b/.github/workflows/configure.yml index c498d39b7d..500b96c03a 100644 --- a/.github/workflows/configure.yml +++ b/.github/workflows/configure.yml @@ -56,7 +56,7 @@ jobs: python-version: 3.11 - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 - name: Prepare env run: uv pip install --python=python --system -r tests/requirements.txt diff --git a/.github/workflows/nightlies.yml b/.github/workflows/nightlies.yml index 3197f5abad..f32c5123e5 100644 --- a/.github/workflows/nightlies.yml +++ b/.github/workflows/nightlies.yml @@ -25,7 +25,7 @@ jobs: fetch-depth: 0 - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 - name: Build SDist and wheels run: | @@ -33,7 +33,7 @@ jobs: nox -s build nox -s build_global - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: Packages path: dist/* @@ -44,7 +44,7 @@ jobs: needs: [build_wheel] runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v5 + - uses: actions/download-artifact@v6 with: name: Packages path: dist diff --git a/.github/workflows/pip.yml b/.github/workflows/pip.yml index a5e7ffb519..866e083b3d 100644 --- a/.github/workflows/pip.yml +++ b/.github/workflows/pip.yml @@ -31,7 +31,7 @@ jobs: python-version: 3.8 - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 - name: Prepare env run: uv pip install --system -r tests/requirements.txt @@ -55,7 +55,7 @@ jobs: python-version: 3.8 - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 - name: Prepare env run: uv pip install --system -r tests/requirements.txt twine nox @@ -72,13 +72,13 @@ jobs: run: twine check dist/* - name: Save standard package - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: standard path: dist/pybind11-* - name: Save global package - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v5 with: name: global path: dist/*global-* @@ -100,7 +100,7 @@ jobs: steps: # Downloads all to directories matching the artifact names - - uses: actions/download-artifact@v5 + - uses: actions/download-artifact@v6 - name: Generate artifact attestation for sdist and wheel uses: actions/attest-build-provenance@v3 diff --git a/.github/workflows/reusable-standard.yml b/.github/workflows/reusable-standard.yml index 8bd0d340e3..a220aba1c4 100644 --- a/.github/workflows/reusable-standard.yml +++ b/.github/workflows/reusable-standard.yml @@ -51,7 +51,7 @@ jobs: run: brew install boost - name: Install uv - uses: astral-sh/setup-uv@v6 + uses: astral-sh/setup-uv@v7 with: enable-cache: true diff --git a/.github/workflows/tests-cibw.yml b/.github/workflows/tests-cibw.yml index f232544bd9..96a4703882 100644 --- a/.github/workflows/tests-cibw.yml +++ b/.github/workflows/tests-cibw.yml @@ -22,7 +22,7 @@ jobs: submodules: true fetch-depth: 0 - - uses: pypa/cibuildwheel@v3.1 + - uses: pypa/cibuildwheel@v3.2 env: PYODIDE_BUILD_EXPORTS: whole_archive with: @@ -45,7 +45,7 @@ jobs: # We have to uninstall first because GH is now using a local tap to build cmake<4, iOS needs cmake>=4 - run: brew uninstall cmake && brew install cmake - - uses: pypa/cibuildwheel@v3.1 + - uses: pypa/cibuildwheel@v3.2 env: CIBW_PLATFORM: ios CIBW_SKIP: cp314-* # https://github.com/pypa/cibuildwheel/issues/2494 @@ -80,7 +80,7 @@ jobs: - run: pipx install patchelf - - uses: pypa/cibuildwheel@v3.1 + - uses: pypa/cibuildwheel@v3.2 env: CIBW_PLATFORM: android with: From a6a5d5e2ca3d7fa6e14c1d19e3ef96e4eb9ea497 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Mon, 10 Nov 2025 16:52:48 -0500 Subject: [PATCH 2/2] Apply suggestion from @henryiii --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ea84e07f5..82f628ea43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -778,7 +778,7 @@ jobs: timeout-minutes: 90 steps: - - uses: actions/checkout@v5 # v1 is required to run inside docker + - uses: actions/checkout@v1 # v1 is required to run inside docker - name: Install requirements run: |