Skip to content

Commit d25c461

Browse files
committed
Update version of the cache action
1 parent c870aa9 commit d25c461

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/code-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
2222

2323
- name: Restore composer cache
24-
uses: actions/cache@v2
24+
uses: actions/cache@v4
2525
with:
2626
path: ${{ steps.composer-cache.outputs.dir }}
2727
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
2222

2323
- name: Restore composer cache
24-
uses: actions/cache@v2
24+
uses: actions/cache@v4
2525
with:
2626
path: ${{ steps.composer-cache.outputs.dir }}
2727
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
2929

3030
- name: Restore composer cache
31-
uses: actions/cache@v2
31+
uses: actions/cache@v4
3232
with:
3333
path: ${{ steps.composer-cache.outputs.dir }}
3434
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}

0 commit comments

Comments
 (0)