Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit b1d4a5c

Browse files
committed
Stop building php 8.1 and 8.2
1 parent 21af793 commit b1d4a5c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Diff for: .github/workflows/php.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: ['ubuntu-latest']
15-
php: ['8.1', '8.2', '8.3']
16-
continue-on-error: ${{ matrix.php == '8.3' }}
15+
php: ['8.3', '8.4']
16+
continue-on-error: ${{ matrix.php == '8.4' }}
1717
steps:
1818
- uses: actions/checkout@v4
1919

@@ -26,15 +26,15 @@ jobs:
2626
run: composer validate
2727

2828
- name: Install dependencies
29-
if: ${{ matrix.php != '8.3' }}
29+
if: ${{ matrix.php != '8.4' }}
3030
uses: nick-invision/retry@v2
3131
with:
3232
timeout_minutes: 5
3333
max_attempts: 3
3434
command: composer update --no-interaction --no-progress
3535

3636
- name: Install Dependencies (ignore platform)
37-
if: ${{ matrix.php == '8.3' }}
37+
if: ${{ matrix.php == '8.4' }}
3838
uses: nick-invision/retry@v2
3939
with:
4040
timeout_minutes: 5

0 commit comments

Comments
 (0)