From 08c5c95f54072739649fec3348661ba959a48ab8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 Jul 2026 20:52:37 +0000 Subject: [PATCH] Bump actions/checkout in the github-actions-dependencies group Bumps the github-actions-dependencies group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 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/v5...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- .github/workflows/prepare_release.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4980571..36fe7cb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: runs-on: "ubuntu-latest" steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v7" - name: "Setup environment" uses: "networktocode/gh-action-setup-poetry-environment@v7" with: diff --git a/.github/workflows/prepare_release.yml b/.github/workflows/prepare_release.yml index 8c2c314..bab1332 100644 --- a/.github/workflows/prepare_release.yml +++ b/.github/workflows/prepare_release.yml @@ -40,7 +40,7 @@ jobs: INPUT_PREVIOUS_VERSION: "${{ github.event.inputs.previous_version }}" steps: - name: "Checkout code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v7" with: # If target_branch is 'main', use 'develop' as the source branch. Otherwise, the source and target branch are the same. ref: "${{ github.event.inputs['target_branch'] == 'main' && 'develop' || github.event.inputs['target_branch'] }}" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 377fa24..33fe1ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: id-token: "write" steps: - name: "Check out repository code" - uses: "actions/checkout@v5" + uses: "actions/checkout@v7" - name: "Set up Python" uses: "actions/setup-python@v6"