diff --git a/.github/workflows/cs.yml b/.github/workflows/cs.yml index 933836e9d65..d218a0cdd9b 100644 --- a/.github/workflows/cs.yml +++ b/.github/workflows/cs.yml @@ -69,7 +69,7 @@ jobs: # Install dependencies and handle caching in one go. # @link https://github.com/marketplace/actions/install-php-dependencies-with-composer - name: Install Composer dependencies - uses: ramsey/composer-install@v2 + uses: ramsey/composer-install@v3 with: # Bust the cache at least once a week - output format: YYYY-MM-DD. custom-cache-suffix: $(/bin/date -u --date='last Mon' "+%F") diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 116e34ed3ee..cbbda0aaf0f 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -88,7 +88,7 @@ jobs: # and available across runs of the same workflow. # @link https://github.com/marketplace/actions/install-php-dependencies-with-composer - name: Install Composer dependencies and run the prefixing script - uses: ramsey/composer-install@v2 + uses: ramsey/composer-install@v3 with: # Bust the cache at least once a week - output format: YYYY-MM-DD. custom-cache-suffix: $(/bin/date -u --date='last Mon' "+%F") diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 20219eca2a8..db98686d717 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -56,7 +56,7 @@ jobs: coverage: none - name: Install Composer dependencies and generate vendor_prefixed directory - uses: ramsey/composer-install@v2 + uses: ramsey/composer-install@v3 with: # Bust the cache at least once a week - output format: YYYY-MM-DD. custom-cache-suffix: $(/bin/date -u --date='last Mon' "+%F") diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c716fcecf9f..f32ac551d48 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -71,7 +71,7 @@ jobs: coverage: none - name: Install Composer dependencies, generate vendor_prefixed directory and run dependency injection - uses: ramsey/composer-install@v2 + uses: ramsey/composer-install@v3 with: # Bust the cache at least once a week - output format: YYYY-MM-DD. custom-cache-suffix: $(/bin/date -u --date='last Mon' "+%F") @@ -101,7 +101,7 @@ jobs: # for the PHP version on which the tests will be run. # @link https://github.com/marketplace/actions/install-php-dependencies-with-composer - name: Install Composer dependencies - uses: ramsey/composer-install@v2 + uses: ramsey/composer-install@v3 with: # Force a `composer update` run. dependency-versions: "highest" @@ -199,7 +199,7 @@ jobs: coverage: none - name: Install Composer dependencies, generate vendor_prefixed directory and run dependency injection - uses: ramsey/composer-install@v2 + uses: ramsey/composer-install@v3 with: # Bust the cache at least once a week - output format: YYYY-MM-DD. custom-cache-suffix: $(/bin/date -u --date='last Mon' "+%F") @@ -225,7 +225,7 @@ jobs: run: composer config --unset platform.php - name: "Install Composer dependencies" - uses: ramsey/composer-install@v2 + uses: ramsey/composer-install@v3 with: # Force a `composer update` run. dependency-versions: "highest"