Skip to content

Commit d060360

Browse files
authored
Update PHP versions and actions in workflow
1 parent 89eb4f5 commit d060360

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
php: [ '8.2', '8.3' ]
10+
php: [ '8.2', '8.3', '8.4' ]
1111

1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v2
14+
uses: actions/checkout@v4
1515

1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2
@@ -23,7 +23,7 @@ jobs:
2323
run: echo "COMPOSER_CACHE_DIR=$(composer config cache-dir)" >> $GITHUB_ENV
2424

2525
- name: Cache dependencies installed with composer
26-
uses: actions/cache@v2
26+
uses: actions/cache@v4
2727
with:
2828
path: ${{ env.COMPOSER_CACHE_DIR }}
2929
key: php${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}
@@ -37,4 +37,4 @@ jobs:
3737
run: composer install --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi
3838

3939
- name: Run tests
40-
run: make test
40+
run: make test

0 commit comments

Comments
 (0)