From 97dafc15c751980d550e79e7376442ea8de1dc5e Mon Sep 17 00:00:00 2001 From: Oskar Stark Date: Mon, 24 Nov 2025 08:47:30 +0100 Subject: [PATCH] Update actions/checkout to v6 Update all occurrences of actions/checkout from v4 and v5 to the latest v6 version across the documentation and workflow files. --- .github/workflows/ci.yaml | 6 +++--- setup/bundles.rst | 2 +- testing/end_to_end.rst | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2b949fe82a5..3c899788a24 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -21,7 +21,7 @@ jobs: steps: - name: "Checkout" - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: "Set-up PHP" uses: shivammathur/setup-php@v2 @@ -56,7 +56,7 @@ jobs: steps: - name: "Checkout" - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: "Create cache dir" run: mkdir .cache @@ -85,7 +85,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: path: 'docs' diff --git a/setup/bundles.rst b/setup/bundles.rst index bd702f279a9..3747cd88a0a 100644 --- a/setup/bundles.rst +++ b/setup/bundles.rst @@ -126,7 +126,7 @@ as a starting point for your own GitHub CI configuration: runs-on: ubuntu-latest continue-on-error: ${{ matrix.stability == 'dev' }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 diff --git a/testing/end_to_end.rst b/testing/end_to_end.rst index 74d6d495637..69c2649174f 100644 --- a/testing/end_to_end.rst +++ b/testing/end_to_end.rst @@ -733,7 +733,7 @@ Here is a minimal ``.github/workflows/panther.yaml`` file to run Panther tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: "ramsey/composer-install@v2" - name: Install dependencies