Skip to content

Commit 4095b8b

Browse files
Merge pull request #21 from xJuvi/patch-1
fix cache action
2 parents 6809e04 + 564b878 commit 4095b8b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
php-version:
2020
- 8
2121
- 8.1
22+
- 8.2
23+
- 8.3
24+
- 8.4
2225
phpunit-version:
2326
- 9.5.4
2427
dependencies:
@@ -30,7 +33,7 @@ jobs:
3033
if: matrix.os == 'windows-latest'
3134
run: git config --global core.autocrlf false
3235
- name: Checkout
33-
uses: actions/checkout@v2
36+
uses: actions/checkout@v4
3437
- name: Setup PHP
3538
uses: shivammathur/setup-php@v2
3639
with:
@@ -43,7 +46,7 @@ jobs:
4346
id: composer-cache
4447
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
4548
- name: Cache dependencies
46-
uses: actions/cache@v2
49+
uses: actions/cache@v4
4750
with:
4851
path: ${{ steps.composer-cache.outputs.dir }}
4952
key: php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}
@@ -56,4 +59,4 @@ jobs:
5659
if: matrix.dependencies == 'highest'
5760
run: composer update --no-ansi --no-interaction --no-progress --ignore-platform-reqs
5861
- name: Run tests with phpunit
59-
run: composer test
62+
run: composer test

0 commit comments

Comments
 (0)