From c1e793ebb2f8b83848c22cafcb5673c030f422fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jun 2026 16:42:25 +0000 Subject: [PATCH] ci: bump actions/checkout from 6 to 7 in the actions-core group Bumps the actions-core group with 1 update: [actions/checkout](https://github.com/actions/checkout). 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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-core ... Signed-off-by: dependabot[bot] --- .github/workflows/ci-for-example.yaml | 2 +- .github/workflows/ci-from-template.yaml | 2 +- .github/workflows/generate-template.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-for-example.yaml b/.github/workflows/ci-for-example.yaml index 2705527..2e1ac53 100644 --- a/.github/workflows/ci-for-example.yaml +++ b/.github/workflows/ci-for-example.yaml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up JDK 25 uses: actions/setup-java@v5 with: diff --git a/.github/workflows/ci-from-template.yaml b/.github/workflows/ci-from-template.yaml index 3e5b182..d7dd7ba 100644 --- a/.github/workflows/ci-from-template.yaml +++ b/.github/workflows/ci-from-template.yaml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout PR branch - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # checkout the pull request head ref when available, otherwise fallback to the workflow ref ref: ${{ github.head_ref || github.ref }} diff --git a/.github/workflows/generate-template.yaml b/.github/workflows/generate-template.yaml index 05c5b5f..d0d1285 100644 --- a/.github/workflows/generate-template.yaml +++ b/.github/workflows/generate-template.yaml @@ -14,7 +14,7 @@ jobs: GENERATED_BRANCH_NAME: generated-template steps: - name: Checkout main - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: main fetch-depth: 0