From df023beabd685647e7893a77a0154ba4e13aa9c2 Mon Sep 17 00:00:00 2001 From: Heat module snapshot Date: Thu, 11 Jun 2026 18:38:38 +0200 Subject: [PATCH] Run CI coding standards on PHP 8.5 Adds PHP 8.5 to the lint matrix and switches the coding standards job/cache key from PHP 8.1 to PHP 8.5. --- .gitea/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index bff0cad..c310a7e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-version: ['7.4', '8.1'] + php-version: ['7.4', '8.1', '8.5'] steps: - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 @@ -26,11 +26,11 @@ jobs: - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: - php-version: '8.1' + php-version: '8.5' - uses: actions/cache@v4 with: path: vendor - key: php-8.1-${{ hashFiles('composer.lock') }} + key: php-8.5-${{ hashFiles('composer.lock') }} - name: Install dependencies run: composer install --no-interaction --no-progress --prefer-dist - name: Run PHP-CS-Fixer