Set PHP version to 8.1 in build-release workflow

Updated the GitHub Actions workflow to use PHP 8.1 instead of the latest version. This ensures better compatibility and stability by avoiding unexpected changes in newer PHP releases.
This commit is contained in:
Mykyta Synelnikov
2025-11-18 14:52:18 +02:00
parent 6b8a060b1d
commit b2464f3238
+1 -1
View File
@@ -29,7 +29,7 @@ jobs:
- name: Install PHP - name: Install PHP
uses: "shivammathur/setup-php@v2" uses: "shivammathur/setup-php@v2"
with: with:
php-version: "latest" php-version: "8.1"
- name: Install Composer Dependencies - name: Install Composer Dependencies
run: | run: |
composer install --no-progress --no-dev --optimize-autoloader --ignore-platform-req=ext-exif --ignore-platform-req=ext-gd --ignore-platform-req=ext-tidy composer install --no-progress --no-dev --optimize-autoloader --ignore-platform-req=ext-exif --ignore-platform-req=ext-gd --ignore-platform-req=ext-tidy