From b14cea623d1abf7162e45d916c170589195251a2 Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 27 Oct 2025 14:58:21 +0100 Subject: [PATCH 1/2] ci: add test for PHP 8.5 Upgrade actions/checkout from v4 to v5 --- .github/workflows/build.yaml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index bc3772f3..1d65a0bf 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup PHP uses: shivammathur/setup-php@v2 - name: Validate composer.json @@ -19,7 +19,7 @@ jobs: name: PHP-CS-Fixer steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Fix CS uses: docker://oskarstark/php-cs-fixer-ga twig-cs-fixer: @@ -27,7 +27,7 @@ jobs: name: Twig-CS-Fixer steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Require the vendor run: composer require --dev --no-update vincentlanglet/twig-cs-fixer ^3.5 - name: Update @@ -52,6 +52,9 @@ jobs: - description: 'No Symfony specified' php: '8.4' max_deprecations: 0 + - description: 'No Symfony specified' + php: '8.5' + max_deprecations: 0 - description: 'Lowest deps' php: '8.1' composer_option: '--prefer-lowest' @@ -61,13 +64,13 @@ jobs: symfony: 6.4.* max_deprecations: 0 - description: 'Dev deps' - php: '8.4' + php: '8.5' dev: true max_deprecations: 0 name: PHP ${{ matrix.php }} tests (${{ matrix.description }}) steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Cache uses: actions/cache@v4 with: @@ -92,7 +95,7 @@ jobs: name: PHPStan steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup PHP uses: shivammathur/setup-php@v2 with: From bc098cafffad6d10c130c2f9fb4552dbb3c869c9 Mon Sep 17 00:00:00 2001 From: chris Date: Mon, 27 Oct 2025 15:02:33 +0100 Subject: [PATCH 2/2] ci: add test for PHP 8.5 --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1d65a0bf..9adede6d 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -64,7 +64,7 @@ jobs: symfony: 6.4.* max_deprecations: 0 - description: 'Dev deps' - php: '8.5' + php: '8.4' dev: true max_deprecations: 0 name: PHP ${{ matrix.php }} tests (${{ matrix.description }})