Skip to content

Commit 4a2eaf4

Browse files
committed
Drop PHP 8.1 and 8.2 support from workflows
1 parent c9c6de4 commit 4a2eaf4

3 files changed

Lines changed: 3 additions & 11 deletions

File tree

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
1818
with:
19-
php-version: '8.1'
19+
php-version: '8.3'
2020
coverage: none
2121

2222
- name: Install composer dependencies

.github/workflows/run-feature-tests.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
macos-latest
2525
# ubuntu-latest,
2626
]
27-
php: [ 8.4, 8.3, 8.2, 8.1 ]
27+
php: [ 8.4, 8.3 ]
2828
laravel: [ '10.*', '11.*', '12.*' ]
2929
stability: [
3030
# prefer-lowest,
@@ -33,10 +33,6 @@ jobs:
3333
exclude:
3434
- laravel: 10.*
3535
php: 8.4
36-
- laravel: 11.*
37-
php: 8.1
38-
- laravel: 12.*
39-
php: 8.1
4036

4137
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
4238

.github/workflows/run-tests.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,12 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
os: [ ubuntu-latest, windows-latest, macos-latest ]
20-
php: [ 8.4, 8.3, 8.2, 8.1 ]
20+
php: [ 8.4, 8.3 ]
2121
laravel: [ '10.*', '11.*', '12.*' ]
2222
stability: [ prefer-lowest, prefer-stable ]
2323
exclude:
2424
- laravel: 10.*
2525
php: 8.4
26-
- laravel: 11.*
27-
php: 8.1
28-
- laravel: 12.*
29-
php: 8.1
3026

3127
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3228

0 commit comments

Comments
 (0)