From 551cb568680a912093661a57c7335928034c513c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 06:03:31 +0000 Subject: [PATCH] Bump the actions-deps group with 2 updates Bumps the actions-deps group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). 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) Updates `actions/cache` from 5 to 6 - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] --- .github/workflows/build-pipeline.yaml | 2 +- .github/workflows/release-pipeline.yaml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-pipeline.yaml b/.github/workflows/build-pipeline.yaml index 822cc17..499c66d 100644 --- a/.github/workflows/build-pipeline.yaml +++ b/.github/workflows/build-pipeline.yaml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Set up Java uses: actions/setup-java@v5 diff --git a/.github/workflows/release-pipeline.yaml b/.github/workflows/release-pipeline.yaml index 29af284..966b234 100644 --- a/.github/workflows/release-pipeline.yaml +++ b/.github/workflows/release-pipeline.yaml @@ -28,7 +28,7 @@ jobs: with: tag: ${{ env.RELEASE_VERSION }} - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 if: steps.checkTag.outputs.exists == 'false' with: persist-credentials: false @@ -88,7 +88,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: 'Check out repository' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ env.RELEASE_VERSION }} fetch-depth: 0 @@ -101,7 +101,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} - name: 'Cache Maven packages' - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} @@ -126,7 +126,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Check out repository' - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 # otherwise, pushing refs to dest repo fails @@ -146,7 +146,7 @@ jobs: distribution: ${{ env.JAVA_DISTRO }} - name: 'Cache Maven packages' - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}