From d9a999b8c48569663a1f004448a0c75fa1f82736 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Jos=C3=A9=20Llorens?= Date: Wed, 2 Oct 2024 11:11:51 +0200 Subject: [PATCH] Update analyze.yml to PHP 8.3 --- .github/workflows/analyze.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/analyze.yml b/.github/workflows/analyze.yml index 7a44529..640623b 100644 --- a/.github/workflows/analyze.yml +++ b/.github/workflows/analyze.yml @@ -17,16 +17,16 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: 8.0 + php-version: 8.3 - name: Cache Composer packages id: composer-cache uses: actions/cache@v4 with: path: vendor - key: ${{ runner.os }}-php-8.0-${{ hashFiles('**/composer.json') }} + key: ${{ runner.os }}-php-8.3-${{ hashFiles('**/composer.json') }} restore-keys: | - ${{ runner.os }}-php-8.0- + ${{ runner.os }}-php-8.3- - name: Install dependencies run: |