Skip to content

Commit e714752

Browse files
authored
chore(ci): add php 8.3, upgrade EOL PHP versions to 8.1 (#2534)
1 parent 8c66021 commit e714752

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/sync-repo-settings.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ branchProtectionRules:
1010
- 'PHP 8.0 Unit Test'
1111
- 'PHP 8.1 Unit Test'
1212
- 'PHP 8.2 Unit Test'
13-
- 'PHP 8.2 --prefer-lowest Unit Test'
13+
- 'PHP 8.3 Unit Test'
14+
- 'PHP 8.3 --prefer-lowest Unit Test'
1415
- 'PHP Style Check'
1516
- 'cla/google'
1617
requiredApprovingReviewCount: 1

.github/workflows/tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php: [ "7.4", "8.0", "8.1", "8.2" ]
14+
php: [ "7.4", "8.0", "8.1", "8.2", "8.3" ]
1515
composer-flags: [""]
1616
include:
1717
- php: "7.4"
1818
composer-flags: "--prefer-lowest "
19-
- php: "8.2"
19+
- php: "8.3"
2020
composer-flags: "--prefer-lowest "
2121
name: PHP ${{ matrix.php }} ${{ matrix.composer-flags }}Unit Test
2222
steps:
@@ -42,7 +42,7 @@ jobs:
4242
- name: Setup PHP
4343
uses: shivammathur/setup-php@v2
4444
with:
45-
php-version: "7.4"
45+
php-version: "8.1"
4646
- name: Install Dependencies
4747
uses: nick-invision/retry@v2
4848
with:
@@ -59,7 +59,7 @@ jobs:
5959
- name: Install PHP
6060
uses: shivammathur/setup-php@v2
6161
with:
62-
php-version: '8.0'
62+
php-version: '8.1'
6363
- name: Run Script
6464
run: |
6565
composer install

0 commit comments

Comments
 (0)