From 0a1c32d3186e5d5017dd2d778685022d8dc8f6ba Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Sep 2025 05:52:17 +0000 Subject: [PATCH] CI: Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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..ef5f5e297 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@v5 with: fetch-depth: 0 diff --git a/.github/workflows/pr_labels.yml b/.github/workflows/pr_labels.yml index 9c318344e..27942a2e0 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@v5 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..cbf90b747 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@v5 if: github.event.inputs.git-ref == '' - name: Clone Repository (with custom ref) - uses: actions/checkout@v4 + uses: actions/checkout@v5 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }}