From ccad78029e4ed1db3e500025589df4d45f5d4823 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 14 Jun 2026 05:31:08 +0000 Subject: [PATCH] ci: bump the actions-core group with 2 updates Bumps the actions-core group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). 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) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-core - dependency-name: actions/cache dependency-version: '5' 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 22a66b8..2705527 100644 --- a/.github/workflows/ci-for-example.yaml +++ b/.github/workflows/ci-for-example.yaml @@ -22,7 +22,7 @@ jobs: distribution: temurin java-version: 25 - name: Cache Maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/ci-from-template.yaml b/.github/workflows/ci-from-template.yaml index dd4ef85..d8ad848 100644 --- a/.github/workflows/ci-from-template.yaml +++ b/.github/workflows/ci-from-template.yaml @@ -52,7 +52,7 @@ jobs: distribution: temurin java-version: 25 - name: Cache Maven dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/generate-template.yaml b/.github/workflows/generate-template.yaml index 0dfe46f..05c5b5f 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@v4 + uses: actions/checkout@v6 with: ref: main fetch-depth: 0