File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 63
63
run : echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
64
64
65
65
- name : " Cache Composer dependencies"
66
- uses : " actions/cache@v3 "
66
+ uses : " actions/cache@v4 "
67
67
with :
68
68
path : ${{ steps.composer-cache.outputs.dir }}
69
69
key : " ${{ matrix.os }}-composer-${{ hashFiles('**/composer.json') }}"
Original file line number Diff line number Diff line change 31
31
key : " extcache-v1"
32
32
33
33
- name : " Cache extensions"
34
- uses : " actions/cache@v3 "
34
+ uses : " actions/cache@v4 "
35
35
with :
36
36
path : ${{ steps.extcache.outputs.dir }}
37
37
key : ${{ steps.extcache.outputs.key }}
90
90
91
91
- name : Cache dependencies
92
92
id : composer-cache
93
- uses : actions/cache@v3
93
+ uses : actions/cache@v4
94
94
with :
95
95
path : ./vendor
96
96
key : composer-${{ hashFiles('**/composer.lock') }}
@@ -100,7 +100,7 @@ jobs:
100
100
101
101
- name : Restore cache PHPStan results
102
102
id : phpstan-cache-restore
103
- uses : actions/cache/restore@v3
103
+ uses : actions/cache/restore@v4
104
104
with :
105
105
path : .cache
106
106
key : " phpstan-result-cache-${{ github.run_id }}"
@@ -113,7 +113,7 @@ jobs:
113
113
- name : Save cache PHPStan results
114
114
id : phpstan-cache-save
115
115
if : always()
116
- uses : actions/cache/save@v3
116
+ uses : actions/cache/save@v4
117
117
with :
118
118
path : .cache
119
119
key : ${{ steps.phpstan-cache-restore.outputs.cache-primary-key }}
You can’t perform that action at this time.
0 commit comments