From 9c365c39ceb127bdecd4143b4b59024a47436b1d Mon Sep 17 00:00:00 2001 From: Guido Falsi Date: Tue, 25 Feb 2025 13:23:17 +0100 Subject: [PATCH 1/2] Also test on PHP 8.4 --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4554c07..9547e28 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: true matrix: - php: [ 8.1, 8.2, 8.3 ] + php: [ 8.1, 8.2, 8.3, 8.4 ] laravel: [ 10.*, 11.* ] dependency-version: [ prefer-stable ] exclude: From 33d9226fa15ff7f9c37ede6d31969092555a01ed Mon Sep 17 00:00:00 2001 From: Guido Falsi Date: Tue, 25 Feb 2025 13:32:46 +0100 Subject: [PATCH 2/2] Update actions. --- .github/workflows/run-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 9547e28..425486a 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -24,10 +24,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.composer/cache/files key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}