From 44aecd413eafb36451b36a7603a6b890165e62c9 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Thu, 27 Nov 2025 14:17:21 +0200 Subject: [PATCH] Update GitHub workflows to target PHP version 8.4 Changed the PHP version from 'latest' to '8.4' in the code-quality and build-release workflows. This ensures consistency and avoids potential issues with future PHP version updates. --- .github/workflows/build-release.yml | 2 +- .github/workflows/code-quality.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index bea312ac..a3c47210 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -29,7 +29,7 @@ jobs: - name: Install PHP uses: "shivammathur/setup-php@v2" with: - php-version: "latest" + php-version: "8.4" - name: Install Composer Dependencies run: | composer install --no-progress --no-dev --optimize-autoloader --ignore-platform-req=ext-exif --ignore-platform-req=ext-gd --ignore-platform-req=ext-tidy diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index a5c53f58..15a60d95 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -15,7 +15,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 'latest' + php-version: '8.4' - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest