From 414d9ff967748bb70c8f7dd08ec091da8d5d9715 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 12:49:55 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-test.yml | 10 +++++----- .github/workflows/ci-pr.yml | 6 +++--- .github/workflows/deploy_docs.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/release-please.yml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 3569e6f7..3929d617 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -35,7 +35,7 @@ jobs: - name: macOS ARM64 runner: macos-15 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./.github/actions/cache-rust-build with: cache-name: rust-tests @@ -97,7 +97,7 @@ jobs: target: aarch64-apple-darwin is-musl: false steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./.github/actions/cache-rust-build with: cache-name: wheel-build @@ -119,7 +119,7 @@ jobs: sdist: runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Build sdist uses: ./.github/actions/build-wheel with: @@ -214,7 +214,7 @@ jobs: python-version: "3.10" is-min-deps: true steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./.github/actions/install-uv with: python-version: ${{ matrix.config.python-version }} @@ -232,7 +232,7 @@ jobs: runs-on: ubuntu-24.04 container: ghcr.io/astral-sh/uv:0.9.11-alpine steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Install dependencies shell: sh diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index 36d494ae..61f8d678 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -14,7 +14,7 @@ jobs: name: Rust tests (Linux x86_64) runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./.github/actions/cache-rust-build with: cache-name: rust-tests @@ -28,7 +28,7 @@ jobs: name: Build Wheel (Linux x86_64) runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./.github/actions/cache-rust-build with: cache-name: wheel-build @@ -49,7 +49,7 @@ jobs: name: Test (Linux x86_64, Python 3.12) runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./.github/actions/install-uv with: python-version: "3.12" diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index 2d9ad585..10bad7e0 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -9,7 +9,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: ./.github/actions/install-uv - name: Build Sphinx documentation diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e3b714b9..d21295e7 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,7 +8,7 @@ jobs: name: Lint runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: astral-sh/ruff-action@v4.0.0 - run: | ruff check diff --git a/.github/workflows/release-please.yml b/.github/workflows/release-please.yml index c56d820e..2a7113e4 100644 --- a/.github/workflows/release-please.yml +++ b/.github/workflows/release-please.yml @@ -24,7 +24,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 if: ${{ steps.release.outputs.release_created }} - name: Download artifacts from CI