From 1204559a09e5a75ce34662cc43a3c14f357e635c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 19:26:15 +0000 Subject: [PATCH] Update actions/checkout action to v5 --- .github/workflows/subsplit-client.yaml | 2 +- .github/workflows/test-client.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/subsplit-client.yaml b/.github/workflows/subsplit-client.yaml index 6a86bb5..88652f8 100644 --- a/.github/workflows/subsplit-client.yaml +++ b/.github/workflows/subsplit-client.yaml @@ -13,7 +13,7 @@ jobs: container: image: ghcr.io/wyrihaximusnet/php:8.2-nts-alpine-dev-root steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 with: fetch-depth: '0' persist-credentials: 'false' diff --git a/.github/workflows/test-client.yaml b/.github/workflows/test-client.yaml index aec9b77..a589ebd 100644 --- a/.github/workflows/test-client.yaml +++ b/.github/workflows/test-client.yaml @@ -13,7 +13,7 @@ jobs: container: image: ghcr.io/wyrihaximusnet/php:8.2-nts-alpine-dev-root steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 with: fetch-depth: '0' persist-credentials: 'false' @@ -33,7 +33,7 @@ jobs: version: ${{ steps.supported-versions-matrix.outputs.version }} upcoming: ${{ steps.supported-versions-matrix.outputs.upcoming }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 - id: supported-versions-matrix uses: WyriHaximus/github-action-composer-php-versions-in-range@v1 with: @@ -46,7 +46,7 @@ jobs: outputs: check: ${{ steps.supported-checks-matrix.outputs.check }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 - name: Download Generated Client uses: actions/download-artifact@v4 with: @@ -76,7 +76,7 @@ jobs: container: image: ghcr.io/wyrihaximusnet/php:${{ matrix.php }}-nts-alpine-dev-root steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 with: fetch-depth: 0 # Required due to the way Git works, without it this action won't be able to find any or the correct tags - run: git config --global --add safe.directory $GITHUB_WORKSPACE # Do this ourself because `actions/checkout@v3 doesn't succeed in doing this