From 491167016649186b5289f110692e6d6744a58994 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Tue, 18 Nov 2025 22:12:43 +0200 Subject: [PATCH] Update PHP version to 'latest' in code-quality workflow Switched from PHP 7.4 to 'latest' in the code-quality GitHub Actions workflow to ensure compatibility with the most up-to-date PHP version. This change improves maintainability and aligns the build process with modern PHP standards. --- .github/workflows/code-quality.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/code-quality.yml b/.github/workflows/code-quality.yml index 57c9ab73..a5c53f58 100644 --- a/.github/workflows/code-quality.yml +++ b/.github/workflows/code-quality.yml @@ -11,7 +11,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + - name: Setup PHP + uses: shivammathur/setup-php@v2 + with: + php-version: 'latest' - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest