From 1e964aa0f4b92fcc89abeae7a3bb2de9261283aa Mon Sep 17 00:00:00 2001 From: Audrius Date: Wed, 2 Sep 2026 09:52:10 +0200 Subject: [PATCH] Run the syntax-check checkout on a supported Node version The php-linter job still pinned actions/checkout@v3.1.0 while the three PHPStan jobs in the same file use @v6. That pin targets Node 20, which GitHub deprecated, so every run of PHP tests annotated the job with a "forced to run on Node.js 24" warning. Align it with the rest of the file. See PrestaShop/PrestaShop#34538 --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index db79f23..29c08d9 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -6,7 +6,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3.1.0 + uses: actions/checkout@v6 - name: PHP syntax checker 7.2 uses: prestashop/github-action-php-lint/7.2@master