From 06c87f078e3a189be567d83d9b62555783a36260 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Dec 2025 03:51:53 +0000 Subject: [PATCH] CI: Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 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/v4...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/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 8d06dec5a..92ac1f5db 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@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/pr_labels.yml b/.github/workflows/pr_labels.yml index 9c318344e..34c2b84c4 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@v4 + uses: actions/checkout@v6 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 6e0193421..2fce0f000 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@v4 + uses: actions/checkout@v6 if: github.event.inputs.git-ref == '' - name: Clone Repository (with custom ref) - uses: actions/checkout@v4 + uses: actions/checkout@v6 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }}