From 07aad17d5d005048700ef6b73be3eba1ab271335 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 06:24:47 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 6 Bumps [actions/checkout](https://github.com/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 ... Signed-off-by: dependabot[bot] --- .github/workflows/build-deploy-snapshot.yml | 2 +- .github/workflows/build-pr.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-deploy-snapshot.yml b/.github/workflows/build-deploy-snapshot.yml index 719440b..3a9e193 100644 --- a/.github/workflows/build-deploy-snapshot.yml +++ b/.github/workflows/build-deploy-snapshot.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Source - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Cache maven repository uses: actions/cache@v4 diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index 53a48cb..6edfdf7 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -16,11 +16,11 @@ jobs: # Checkout the base repository's code - name: Checkout base repository - uses: actions/checkout@v5 + uses: actions/checkout@v6 # Explicitly check out the pull request's head branch - name: Checkout pull request code - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: ${{ github.event.pull_request.head.ref }} repository: ${{ github.event.pull_request.head.repo.full_name }}