From f225e32a716d1fef4dd7124d740ce97ae2dbe78b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 03:53:02 +0000 Subject: [PATCH] build(deps): bump the actions group across 1 directory with 2 updates Bumps the actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel). 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 `pypa/cibuildwheel` from 3.4.1 to 4.1.0 - [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.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: pypa/cibuildwheel dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] --- .github/workflows/autopush.yml | 2 +- .github/workflows/ci.yml | 20 ++++++++++---------- .github/workflows/wheels.yml | 6 +++--- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/autopush.yml b/.github/workflows/autopush.yml index 469280898..be4271c64 100644 --- a/.github/workflows/autopush.yml +++ b/.github/workflows/autopush.yml @@ -10,7 +10,7 @@ jobs: if: startsWith(github.repository, 'inducer/') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - run: | curl -L -O https://tiker.net/ci-support-v0 . ./ci-support-v0 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cf71bcc92..a17f60184 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: name: Ruff runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: true - uses: actions/setup-python@v6 @@ -31,13 +31,13 @@ jobs: name: Typos runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: crate-ci/typos@master basedpyright: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: "Main Script" run: | curl -L -O https://tiker.net/ci-support-v0 @@ -52,7 +52,7 @@ jobs: name: Pytest Linux POCL runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: "Main Script" run: | curl -L -O https://tiker.net/ci-support-v0 @@ -65,7 +65,7 @@ jobs: name: Pytest Linux Intel CL runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: "Main Script" run: | export PYOPENCL_CACHE_FAILURE_FATAL=1 @@ -82,7 +82,7 @@ jobs: name: Pytest Windows Intel CL runs-on: windows-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: "Main Script" shell: bash run: | @@ -105,7 +105,7 @@ jobs: name: Pytest Mac POCL runs-on: macos-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: "Main Script" run: | export CC=gcc @@ -121,7 +121,7 @@ jobs: name: Documentation runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-python@v6 with: @@ -140,7 +140,7 @@ jobs: name: Examples runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: "Main Script" run: | EXTRA_INSTALL="pillow cgen mako imageio" @@ -159,7 +159,7 @@ jobs: name: Tests for downstream project ${{ matrix.downstream_project }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: "Main Script" env: DOWNSTREAM_PROJECT: ${{ matrix.downstream_project }} diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 8bfd37244..883fc898a 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -28,7 +28,7 @@ jobs: - os: macos-14 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: 'true' @@ -37,7 +37,7 @@ jobs: python-version: '3.x' - name: Build wheels - uses: pypa/cibuildwheel@v3.4.1 + uses: pypa/cibuildwheel@v4.1.0 env: CIBW_ARCHS_LINUX: ${{ matrix.cibw_archs_linux }} CIBW_ENVIRONMENT_WINDOWS: > @@ -52,7 +52,7 @@ jobs: name: Build source distribution runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: submodules: 'true'