From 131c1fe022f3c9dc05017f5843556e42dee6285f Mon Sep 17 00:00:00 2001 From: Attila Fulop <1162360+fulopattila122@users.noreply.github.com> Date: Tue, 12 Mar 2024 17:05:50 +0200 Subject: [PATCH] Bump Laravel to 10.48 & 11.0 in CI --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 27f4500..e096033 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,17 +9,17 @@ jobs: strategy: matrix: php: ['8.0', '8.1', '8.2', '8.3'] - laravel: ['8.75', '8.83', '9.0', '9.52', '10.0', '10.39', '11.x'] + laravel: ['8.75', '8.83', '9.0', '9.52', '10.0', '10.48', '11.0'] enum: ['2', '3', '4'] exclude: - php: '8.0' laravel: '10.0' - php: '8.0' - laravel: '10.39' + laravel: '10.48' - php: '8.0' - laravel: '11.x' + laravel: '11.0' - php: '8.1' - laravel: '11.x' + laravel: '11.0' name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} Enum ${{ matrix.enum }} steps: - name: Checkout