Skip to content

Commit 1aa0d83

Browse files
authored
Merge pull request #79 from rdohms/feature/ghactions-php-8.3-update
GH Actions: update for the release of PHP 8.3
2 parents 13b8ac3 + 1921260 commit 1aa0d83

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Diff for: .github/workflows/run-tests.yml

+7-4
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
strategy:
2727
matrix:
28-
php: ['8.2', '8.1', '8.0', '7.4', '7.3', '7.2', '7.1', '7.0', '5.6', '5.5', '5.4']
28+
php: ['8.3', '8.2', '8.1', '8.0', '7.4', '7.3', '7.2', '7.1', '7.0', '5.6', '5.5', '5.4']
2929
dependency-version: ['prefer-stable']
3030
experimental: [false]
3131

@@ -48,8 +48,11 @@ jobs:
4848
- php: '8.2'
4949
dependency-version: 'prefer-lowest'
5050
experimental: false
51-
5251
- php: '8.3'
52+
dependency-version: 'prefer-lowest'
53+
experimental: false
54+
55+
- php: '8.4'
5356
dependency-version: 'prefer-stable'
5457
experimental: true
5558

@@ -82,12 +85,12 @@ jobs:
8285
run: composer require --no-update phpunit/phpunit:"^9.0" --no-interaction
8386

8487
- name: Install dependencies - normal
85-
if: ${{ matrix.php < 8.3 }}
88+
if: ${{ matrix.php < 8.4 }}
8689
run: |
8790
composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress --no-interaction
8891
8992
- name: Install dependencies - ignore platform reqs
90-
if: ${{ matrix.php >= 8.3 }}
93+
if: ${{ matrix.php >= 8.4 }}
9194
run: |
9295
composer update --${{ matrix.dependency-version }} --prefer-dist --no-progress --ignore-platform-req=php+ --no-interaction
9396

0 commit comments

Comments
 (0)