Skip to content

Commit d9795ac

Browse files
aaronm67yuha-yuha
authored andcommitted
update workflows to use actions/cache@v4 (#55)
* Update phpunit.yml * use actions/cache@v4
1 parent c493612 commit d9795ac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/phpunit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
echo "::set-output name=dir::$(composer config cache-files-dir)"
2424
2525
- name: Cache Composer packages
26-
uses: actions/cache@v2
26+
uses: actions/cache@v4
2727
with:
2828
path: ${{ steps.composer-cache.outputs.dir }}
2929
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/psalm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
echo "::set-output name=dir::$(composer config cache-files-dir)"
2020
2121
- name: Cache Composer packages
22-
uses: actions/cache@v2
22+
uses: actions/cache@v4
2323
with:
2424
path: ${{ steps.composer-cache.outputs.dir }}
2525
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)