Skip to content

Commit 44e8f2d

Browse files
committed
build: add php8 to ci
1 parent 0043076 commit 44e8f2d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/default.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
strategy:
2424
fail-fast: true
2525
matrix:
26-
php: [ 7.1, 7.2, 7.3, 7.4 ]
26+
php: [ 7.1, 7.2, 7.3, 7.4, 8.0, 8.1 ]
2727
stability: [ prefer-lowest ]
2828

2929
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
3030

3131
steps:
3232
- name: Checkout code
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v3
3434

3535
- name: Setup PHP
3636
uses: shivammathur/setup-php@v2
@@ -44,7 +44,7 @@ jobs:
4444

4545
- name: Cache Composer packages
4646
id: composer-cache
47-
uses: actions/cache@v2
47+
uses: actions/cache@v3
4848
with:
4949
path: vendor
5050
key: ${{ runner.os }}-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }}
@@ -62,8 +62,8 @@ jobs:
6262
runs-on: ubuntu-latest
6363
needs: [ test ]
6464
steps:
65-
- uses: actions/checkout@v2
66-
- uses: actions/setup-node@v2
65+
- uses: actions/checkout@v3
66+
- uses: actions/setup-node@v3
6767
with:
6868
node-version: 'lts/*'
6969

0 commit comments

Comments
 (0)