We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89eb4f5 commit d060360Copy full SHA for d060360
1 file changed
.github/workflows/test.yaml
@@ -7,11 +7,11 @@ jobs:
7
strategy:
8
fail-fast: false
9
matrix:
10
- php: [ '8.2', '8.3' ]
+ php: [ '8.2', '8.3', '8.4' ]
11
12
steps:
13
- name: Checkout
14
- uses: actions/checkout@v2
+ uses: actions/checkout@v4
15
16
- name: Setup PHP
17
uses: shivammathur/setup-php@v2
@@ -23,7 +23,7 @@ jobs:
23
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
24
25
- name: Cache dependencies installed with composer
26
- uses: actions/cache@v2
+ uses: actions/cache@v4
27
with:
28
path: ${{ env.COMPOSER_CACHE_DIR }}
29
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
@@ -37,4 +37,4 @@ jobs:
37
run: composer install --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
38
39
- name: Run tests
40
- run: make test
+ run: make test
0 commit comments