Skip to content

Commit 60b917f

Browse files
committed
GH Actions: PHP 8.4 has been released
* Builds against PHP 8.4 are no longer allowed to fail. * Add _allowed to fail_ build against PHP 8.5. Ref: https://www.php.net/releases/8.4/en.php
1 parent d95a9d8 commit 60b917f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/php-qa.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
strategy:
1818
fail-fast: true
1919
matrix:
20-
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
20+
php-versions: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
2121
dependency-versions: ['lowest', 'highest']
2222

2323
include:
24-
- php-versions: '8.4'
24+
- php-versions: '8.5'
2525
dependency-versions: 'highest'
2626

27-
continue-on-error: ${{ matrix.php-versions == '8.4' }}
27+
continue-on-error: ${{ matrix.php-versions == '8.5' }}
2828

2929
steps:
3030
- uses: actions/checkout@v4
@@ -44,15 +44,15 @@ jobs:
4444
run: parallel-lint ./src/ ./tests/
4545

4646
- name: Install dependencies - normal
47-
if: ${{ matrix.php-versions != '8.4' }}
47+
if: ${{ matrix.php-versions != '8.5' }}
4848
uses: "ramsey/composer-install@v3"
4949
with:
5050
dependency-versions: ${{ matrix.dependency-versions }}
5151
# Bust the cache at least once a month - output format: YYYY-MM.
5252
custom-cache-suffix: $(date -u "+%Y-%m")
5353

5454
- name: Install dependencies - ignore-platform-reqs
55-
if: ${{ matrix.php-versions == '8.4' }}
55+
if: ${{ matrix.php-versions == '8.5' }}
5656
uses: "ramsey/composer-install@v3"
5757
with:
5858
dependency-versions: ${{ matrix.dependency-versions }}

0 commit comments

Comments
 (0)