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 4242 # Install dependencies and handle caching in one go.
4343 # @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
4444 - name : Install Composer dependencies
45- uses : " ramsey/composer-install@v2 "
45+ uses : " ramsey/composer-install@v3 "
4646 with :
4747 # Bust the cache at least once a month - output format: YYYY-MM.
4848 custom-cache-suffix : $(date -u "+%Y-%m")
9393 # Dependencies need to be installed to make sure the PHPUnit classes are recognized.
9494 # @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
9595 - name : Install Composer dependencies
96- uses : " ramsey/composer-install@v2 "
96+ uses : " ramsey/composer-install@v3 "
9797 with :
9898 # Bust the cache at least once a month - output format: YYYY-MM.
9999 custom-cache-suffix : $(date -u "+%Y-%m")
Original file line number Diff line number Diff line change @@ -98,15 +98,15 @@ jobs:
9898 # @link https://github.com/marketplace/actions/install-php-dependencies-with-composer
9999 - name : Install Composer dependencies - normal
100100 if : ${{ matrix.php != '8.4' }}
101- uses : " ramsey/composer-install@v2 "
101+ uses : " ramsey/composer-install@v3 "
102102 with :
103103 # Bust the cache at least once a month - output format: YYYY-MM.
104104 custom-cache-suffix : $(date -u "+%Y-%m")
105105
106106 # For the PHP "nightly", we need to install with ignore platform reqs as not all dependencies allow it yet.
107107 - name : Install Composer dependencies - with ignore platform
108108 if : ${{ matrix.php == '8.4' }}
109- uses : " ramsey/composer-install@v2 "
109+ uses : " ramsey/composer-install@v3 "
110110 with :
111111 composer-options : --ignore-platform-req=php
112112 custom-cache-suffix : $(date -u "+%Y-%m")
@@ -166,7 +166,7 @@ jobs:
166166 composer require --no-update squizlabs/php_codesniffer:"${{ matrix.phpcs_version }}"
167167
168168 - name : Install Composer dependencies
169- uses : " ramsey/composer-install@v2 "
169+ uses : " ramsey/composer-install@v3 "
170170 with :
171171 # Bust the cache at least once a month - output format: YYYY-MM.
172172 custom-cache-suffix : $(date -u "+%Y-%m")
You can’t perform that action at this time.
0 commit comments