From 042fd3a9289fa0d5da1ea1671ec74d05ea8146ad Mon Sep 17 00:00:00 2001 From: Cesar Garcia Date: Thu, 28 Nov 2024 09:21:03 +0100 Subject: [PATCH] Update fix_style.yml to php83 --- .github/workflows/fix_style.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/fix_style.yml b/.github/workflows/fix_style.yml index 0febfc6..7503457 100644 --- a/.github/workflows/fix_style.yml +++ b/.github/workflows/fix_style.yml @@ -15,16 +15,16 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.4 + php-version: 8.3 - name: Cache Composer packages id: composer-cache uses: actions/cache@v4 with: path: vendor - key: ${{ runner.os }}-php-8.4-${{ hashFiles('**/composer.json') }} + key: ${{ runner.os }}-php-8.3-${{ hashFiles('**/composer.json') }} restore-keys: | - ${{ runner.os }}-php-8.4- + ${{ runner.os }}-php-8.3- - name: Install dependencies if: steps.composer-cache.outputs.cache-hit != 'true'