Skip to content

Commit b39d979

Browse files
authored
Change dependency-version to stability in workflow
1 parent 0a12cdd commit b39d979

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
os: [ubuntu-latest, windows-latest]
1919
php: [8.1, 8.2, 8.3, 8.4, 8.5]
2020
laravel: ['10.*', '11.*', '12.*']
21-
dependency-version: [prefer-stable]
21+
stability: [prefer-stable]
2222
include:
2323
- laravel: 10.*
2424
testbench: 8.*
@@ -38,7 +38,7 @@ jobs:
3838
- laravel: 12.*
3939
php: 8.1
4040

41-
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
41+
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
4242

4343
steps:
4444
- name: Checkout code
@@ -59,7 +59,7 @@ jobs:
5959
- name: Install dependencies
6060
run: |
6161
composer require "illuminate/contracts:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
62-
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
62+
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
6363
6464
- name: Execute tests
6565
run: composer run-script test

0 commit comments

Comments
 (0)