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 }}