From 5729dcfc2e08cecb515fccffd5cd3698161ccf99 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 05:45:29 +0000 Subject: [PATCH] ci(deps): bump actions/checkout from 4 to 6 in the github-actions group Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 4 to 6 - [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/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/bootstrap-template.yaml | 2 +- .github/workflows/ci.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bootstrap-template.yaml b/.github/workflows/bootstrap-template.yaml index 26c6f64..e647ab7 100644 --- a/.github/workflows/bootstrap-template.yaml +++ b/.github/workflows/bootstrap-template.yaml @@ -13,7 +13,7 @@ jobs: if: github.event.repository.is_template == false && github.actor != 'github-actions[bot]' && (github.event_name != 'create' || github.event.ref_type == 'branch') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 ref: ${{ github.event.repository.default_branch }} diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d3739f7..e0d1c07 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: qa: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: pre-commit/action@v3.0.1 test: needs: qa @@ -26,7 +26,7 @@ jobs: python-version: ['3.10', '3.11', '3.12', '3.13'] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Install uv and Python uses: astral-sh/setup-uv@v7 with: