From ded175f681d092d9613533c635c9fa1fc9e67ca7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 22 Nov 2025 08:32:27 +0100 Subject: [PATCH] Bump actions/checkout from 5 to 6 (#5138) 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) Signed-off-by: dependabot[bot] --- .github/workflows/ci-build.yml | 8 ++++---- .github/workflows/rebuild.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 1b6ea2c35..772952991 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -27,11 +27,11 @@ jobs: steps: - name: Checkout if: github.head_ref == '' - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Checkout merge if: github.head_ref != '' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: refs/pull/${{github.event.pull_request.number}}/merge @@ -113,11 +113,11 @@ jobs: steps: - name: Checkout if: github.head_ref == '' - uses: actions/checkout@v5 + uses: actions/checkout@v6 - name: Checkout merge if: github.head_ref != '' - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: refs/pull/${{github.event.pull_request.number}}/merge diff --git a/.github/workflows/rebuild.yml b/.github/workflows/rebuild.yml index c78f8d543..f32f8561a 100644 --- a/.github/workflows/rebuild.yml +++ b/.github/workflows/rebuild.yml @@ -51,13 +51,13 @@ jobs: - name: Checkout if: ${{ github.head_ref == '' && env.LABEL == 'rebuild' }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: persist-credentials: false - name: Checkout merge if: ${{ github.head_ref != '' && env.LABEL == 'rebuild' }} - uses: actions/checkout@v5 + uses: actions/checkout@v6 with: ref: refs/pull/${{github.event.pull_request.number}}/merge persist-credentials: false