From 907f1f667afd3ed3c4252f462df8723328def34c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 13:43:17 +0000 Subject: [PATCH] build(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) | `6` | `7` | | [actions/setup-python](https://github.com/actions/setup-python) | `6` | `7` | | [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) | `3.4.1` | `4.1.1` | | [actions/setup-node](https://github.com/actions/setup-node) | `6` | `7` | | [actions/cache](https://github.com/actions/cache) | `5` | `6` | Updates `actions/checkout` from 6 to 7 - [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/v6...v7) Updates `actions/setup-python` from 6 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v6...v7) Updates `pypa/cibuildwheel` from 3.4.1 to 4.1.1 - [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.4.1...v4.1.1) Updates `actions/setup-node` from 6 to 7 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v6...v7) Updates `actions/cache` from 5 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/cibuildwheel dependency-version: 4.1.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-node dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 46 +++++++++++++++++------------------ .github/workflows/release.yml | 4 +-- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a85f153d..e3bedb78 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,10 +17,10 @@ jobs: ruff: runs-on: "ubuntu-latest" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: "3.x" @@ -31,10 +31,10 @@ jobs: mypy: runs-on: "ubuntu-latest" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: "3.x" @@ -45,10 +45,10 @@ jobs: pytest: runs-on: "ubuntu-latest" steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: "3.x" @@ -151,10 +151,10 @@ jobs: env: SETUPTOOLS_RUST_CARGO_PROFILE: dev steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: ${{ matrix.python-version }} architecture: ${{ matrix.platform.python-architecture }} @@ -216,9 +216,9 @@ jobs: ubuntu-24.04-arm, ] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: "3.x" @@ -243,7 +243,7 @@ jobs: # Now we switch to a different Python version and ensure we can install # the wheel we just built. - name: Setup python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: "3.11" @@ -273,9 +273,9 @@ jobs: matrix: platform: [{ arch: "aarch64" }, { arch: "armv7" }] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: "3.x" - uses: docker/setup-qemu-action@v4 @@ -285,9 +285,9 @@ jobs: test-cross: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: "3.x" - uses: dtolnay/rust-toolchain@stable @@ -302,9 +302,9 @@ jobs: test-zigbuild: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: "3.10" # must match the ubuntu version in the install, and also the version copied out of the docker image below - uses: dtolnay/rust-toolchain@stable @@ -351,11 +351,11 @@ jobs: test-cibuildwheel: runs-on: macos-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: dtolnay/rust-toolchain@stable with: targets: aarch64-apple-darwin,x86_64-apple-darwin - - uses: pypa/cibuildwheel@v3.4.1 + - uses: pypa/cibuildwheel@v4.1.1 env: CIBW_BUILD: cp39-* CIBW_BEFORE_BUILD: > @@ -391,7 +391,7 @@ jobs: }, ] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install MSys2 and dependencies uses: msys2/setup-msys2@v2 with: @@ -425,9 +425,9 @@ jobs: test-emscripten: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: astral-sh/setup-uv@v7 - - uses: actions/setup-node@v6 + - uses: actions/setup-node@v7 with: node-version: 22 - run: | @@ -441,7 +441,7 @@ jobs: with: version: ${{env.EMSCRIPTEN_VERSION}} actions-cache-folder: emsdk-cache - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: | tests/pyodide diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 00942af9..edad0cba 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,9 +14,9 @@ jobs: id-token: write steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Set up Python - uses: actions/setup-python@v6 + uses: actions/setup-python@v7 with: python-version: '3.x' - name: Install dependencies