From a8125ee2601ada276cffc5bb67d8657d8ff60453 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 16:33:48 +0000 Subject: [PATCH] CI: Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/linter.yml | 2 +- .github/workflows/pr_labels.yml | 2 +- .github/workflows/stable-compilation.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index c437090087..1c35947791 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Clone Repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/pr_labels.yml b/.github/workflows/pr_labels.yml index 07237f87a8..a72fb19bbe 100644 --- a/.github/workflows/pr_labels.yml +++ b/.github/workflows/pr_labels.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Clone repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: # pull_request_target is run under forks, use main repo source fetch-depth: 0 diff --git a/.github/workflows/stable-compilation.yml b/.github/workflows/stable-compilation.yml index 157be4c24b..fe54e404f9 100644 --- a/.github/workflows/stable-compilation.yml +++ b/.github/workflows/stable-compilation.yml @@ -61,10 +61,10 @@ jobs: libdrm-dev libgbm-dev # only needed for sdl2 on debian 11 - name: Clone Repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 if: github.event.inputs.git-ref == '' - name: Clone Repository (with custom ref) - uses: actions/checkout@v6 + uses: actions/checkout@v7 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }}