From 1f18f9dc4ce0040fc73e73f1f3c284a0b3ff2bfc Mon Sep 17 00:00:00 2001 From: Attila Fulop <1162360+fulopattila122@users.noreply.github.com> Date: Tue, 12 Mar 2024 16:59:30 +0200 Subject: [PATCH] Bump Laravel to 10.48 & 11.0 in CI --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4ffaa60..bbc95a5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,10 +9,10 @@ jobs: strategy: matrix: php: ['8.1', '8.2', '8.3'] - laravel: ['10.0', '10.46', '11.x'] + laravel: ['10.0', '10.48', '11.0'] exclude: - php: '8.1' - laravel: '11.x' + laravel: '11.0' name: PHP ${{ matrix.php }} Laravel ${{ matrix.laravel }} steps: - name: Checkout @@ -21,7 +21,7 @@ jobs: uses: shivammathur/setup-php@master with: php-version: ${{ matrix.php }} - extensions: mbstring, json, sqlite3 + extensions: mbstring, json, sqlite3K tools: composer:v2 - name: Lock Laravel Version run: composer require "illuminate/support:${{ matrix.laravel }}.*" --no-update -v && composer require "illuminate/console:${{ matrix.laravel }}.*" --no-update -v