From fb2386d6bea60046d12b809281e6369a4f05a83f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 06:26:21 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 in the actions-deps group Bumps the actions-deps group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 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/v5...v6) --- updated-dependencies: - dependency-name: actions/checkout 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 | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-pipeline.yaml b/.github/workflows/build-pipeline.yaml index b3ae2ad..822cc17 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@v5 + uses: actions/checkout@v6 - name: Set up Java uses: actions/setup-java@v5 diff --git a/.github/workflows/release-pipeline.yaml b/.github/workflows/release-pipeline.yaml index bea58b1..46d42fa 100644 --- a/.github/workflows/release-pipeline.yaml +++ b/.github/workflows/release-pipeline.yaml @@ -25,7 +25,7 @@ jobs: with: tag: ${{ github.event.inputs.version }} - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 if: steps.checkTag.outputs.exists == 'false' with: persist-credentials: false @@ -62,7 +62,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: 'Check out repository' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.inputs.version }} fetch-depth: 0 @@ -100,7 +100,7 @@ jobs: runs-on: ubuntu-latest steps: - name: 'Check out repository' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: fetch-depth: 0 # otherwise, pushing refs to dest repo fails