Skip to content

Commit e64a949

Browse files
committed
Upgrade the cache Github action
Version 2 of the cache Github action has been deprecated, and upgrading to a more recent version is required, so this commit upgrades from v2 to v4.
1 parent 824589e commit e64a949

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
strategy:
3333
matrix:
34-
php-versions: ['8.1', '8.2', '8.3']
34+
php-versions: ['8.1', '8.2', '8.3', '8.4']
3535
steps:
3636
- name: Checkout
3737
uses: actions/checkout@v2
@@ -45,7 +45,7 @@ jobs:
4545
id: composer-cache
4646
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
4747
- name: Cache dependencies
48-
uses: actions/cache@v2
48+
uses: actions/cache@v4
4949
with:
5050
path: ${{ steps.composer-cache.outputs.dir }}
5151
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)