File tree 1 file changed +4
-6
lines changed
1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 13
13
14
14
steps :
15
15
- name : Checkout code
16
- uses : actions/checkout@v2
16
+ uses : actions/checkout@v3
17
17
18
18
- name : Setup PHP
19
19
uses : shivammathur/setup-php@v2
33
33
34
34
- name : Checkout Laravel 8 Sample
35
35
if : matrix.laravel == 8
36
- uses : actions/checkout@v2
36
+ uses : actions/checkout@v3
37
37
with :
38
38
repository : codeception/laravel-module-tests
39
39
path : framework-tests
@@ -44,16 +44,14 @@ jobs:
44
44
run : echo "::set-output name=dir::$(composer config cache-files-dir)"
45
45
46
46
- name : Cache composer dependencies
47
- uses : actions/cache@v2.1.3
47
+ uses : actions/cache@v3
48
48
with :
49
49
path : ${{ steps.composer-cache.outputs.dir }}
50
50
key : ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
51
51
restore-keys : ${{ runner.os }}-${{ matrix.php }}-composer-
52
52
53
53
- name : Install dependencies
54
- run : |
55
- composer require laravel/framework=${{ matrix.laravel }} --ignore-platform-req=php --no-update
56
- composer install --prefer-dist --no-progress --ignore-platform-req=php
54
+ run : composer install --prefer-dist --no-progress
57
55
58
56
- name : Validate composer.json and composer.lock
59
57
run : composer validate
You can’t perform that action at this time.
0 commit comments