Skip to content

Commit ca5410d

Browse files
committed
Update run-tests.yml
1 parent 191cf2b commit ca5410d

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

.github/workflows/run-tests.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-22.04
1313
timeout-minutes: 15
1414
strategy:
15-
fail-fast: true
15+
fail-fast: false
1616
matrix:
1717
php: [ 8.3, 8.4 ]
1818
laravel: [ 13.*, 12.*, 11.* ]
@@ -75,6 +75,14 @@ jobs:
7575
coverage: xdebug
7676
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo, mysql
7777

78+
- name: Allow Laravel 11 to resolve
79+
if: matrix.laravel == '11.*'
80+
# Laravel 11 is past its security window, so three advisories now cover
81+
# the whole branch with no 11.x release that clears them. Composer 2.9+
82+
# blocks advisory-affected versions during resolution, which makes the
83+
# row unrunnable rather than red. Report them instead of blocking.
84+
run: composer config --global policy.advisories.block false
85+
7886
- name: Install dependencies
7987
run: |
8088
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update

0 commit comments

Comments
 (0)