Skip to content

Commit f345088

Browse files
committed
Add PHP 8.3
1 parent 8e534f8 commit f345088

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
if: "!contains(github.event.head_commit.message, 'skip ci')"
1212
name: PHP ${{ matrix.php-versions }} on ${{ matrix.os }}
1313
runs-on: ${{ matrix.os }}
14-
continue-on-error: ${{ matrix.php-versions == '8.2' }}
14+
continue-on-error: ${{ matrix.php-versions == '8.3' }}
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
18+
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
1919
os: [ubuntu-latest, windows-latest]
2020

2121
steps:
@@ -24,7 +24,7 @@ jobs:
2424
run: git config --system core.autocrlf false; git config --system core.eol lf
2525

2626
- name: Checkout
27-
uses: actions/checkout@v2
27+
uses: actions/checkout@v3
2828

2929
- name: Set up PHP ${{ matrix.php-versions }}
3030
uses: shivammathur/setup-php@v2
@@ -43,7 +43,7 @@ jobs:
4343
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
4444

4545
- name: Cache dependencies
46-
uses: actions/cache@v2.1.3
46+
uses: actions/cache@v3
4747
with:
4848
path: ${{ steps.composer-cache.outputs.dir }}
4949
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)