File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,28 +28,28 @@ jobs:
28
28
extensions : intl, xsl
29
29
30
30
- name : Checkout
31
- uses : actions/checkout@v3
31
+ uses : actions/checkout@v4
32
32
33
33
- name : Get composer cache directory
34
34
id : composer-cache
35
35
run : echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
36
36
37
37
- name : Cache composer dependencies
38
- uses : actions/cache@v3
38
+ uses : actions/cache@v4
39
39
with :
40
40
path : ${{ steps.composer-cache.outputs.dir }}
41
41
key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
42
42
restore-keys : ${{ runner.os }}-composer-
43
43
44
44
- name : Cache php-cs-fixer data
45
- uses : actions/cache@v3
45
+ uses : actions/cache@v4
46
46
with :
47
47
path : .php_cs_cache
48
48
key : " php-${{ matrix.php-version }}-php-cs-fixer-${{ github.sha }}"
49
49
restore-keys : " php-${{ matrix.php-version }}-php-cs-fixer-"
50
50
51
51
- name : Cache phpstan data
52
- uses : actions/cache@v3
52
+ uses : actions/cache@v4
53
53
with :
54
54
path : .phpstan_cache
55
55
key : " php-${{ matrix.php-version }}-phpstan-${{ github.sha }}"
You can’t perform that action at this time.
0 commit comments