File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 31
31
# Install dependencies and handle caching in one go.
32
32
# @link https://github.com/marketplace/actions/install-composer-dependencies
33
33
- name : Install Composer dependencies
34
- uses : " ramsey/composer-install@v1 "
34
+ uses : " ramsey/composer-install@v2 "
35
35
36
36
- name : Check PHP code style
37
37
continue-on-error : true
Original file line number Diff line number Diff line change @@ -43,18 +43,18 @@ jobs:
43
43
# Remove the PHPCS standard as it has a minimum PHP requirements of PHP 5.4 and would block install on PHP 5.3.
44
44
- name : ' Composer: remove PHPCS'
45
45
if : ${{ matrix.php < 5.4 }}
46
- run : composer remove --dev php-parallel-lint/php-code-style --no-update
46
+ run : composer remove --dev php-parallel-lint/php-code-style --no-update --no-interaction
47
47
48
48
# Install dependencies and handle caching in one go.
49
49
# @link https://github.com/marketplace/actions/install-composer-dependencies
50
50
- name : Install Composer dependencies - normal
51
51
if : ${{ matrix.experimental == false }}
52
- uses : " ramsey/composer-install@v1 "
52
+ uses : " ramsey/composer-install@v2 "
53
53
54
54
# For the PHP "nightly", we need to install with ignore platform reqs as not all dependencies allow it.
55
55
- name : Install Composer dependencies - with ignore platform
56
56
if : ${{ matrix.experimental == true }}
57
- uses : " ramsey/composer-install@v1 "
57
+ uses : " ramsey/composer-install@v2 "
58
58
with :
59
59
composer-options : --ignore-platform-reqs
60
60
You can’t perform that action at this time.
0 commit comments