diff --git a/.github/workflows/cs.yml b/.github/workflows/cs.yml index 1faee6110..8c0f9d6a7 100644 --- a/.github/workflows/cs.yml +++ b/.github/workflows/cs.yml @@ -32,7 +32,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 month - output format: YYYY-MM. custom-cache-suffix: $(date -u "+%Y-%m") diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 27359b0fb..ff425bce8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -41,7 +41,7 @@ jobs: # @link https://github.com/marketplace/actions/install-php-dependencies-with-composer - name: Install Composer dependencies - normal if: ${{ matrix.php != '8.4' }} - uses: "ramsey/composer-install@v2" + uses: "ramsey/composer-install@v3" with: # Bust the cache at least once a month - output format: YYYY-MM. custom-cache-suffix: $(date -u "+%Y-%m") @@ -49,7 +49,7 @@ jobs: # For PHP "nightly", we need to install with ignore platform reqs. - name: Install Composer dependencies - with ignore platform if: ${{ matrix.php == '8.4' }} - uses: "ramsey/composer-install@v2" + uses: "ramsey/composer-install@v3" with: composer-options: --ignore-platform-req=php custom-cache-suffix: $(date -u "+%Y-%m") diff --git a/.github/workflows/quicktest.yml b/.github/workflows/quicktest.yml index 96526549c..c22044b52 100644 --- a/.github/workflows/quicktest.yml +++ b/.github/workflows/quicktest.yml @@ -48,7 +48,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 - normal - uses: "ramsey/composer-install@v2" + uses: "ramsey/composer-install@v3" with: # Bust the cache at least once a month - output format: YYYY-MM. custom-cache-suffix: $(date -u "+%Y-%m") diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f6a512fb5..4f8b85e00 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -61,7 +61,7 @@ jobs: # @link https://github.com/marketplace/actions/install-php-dependencies-with-composer - name: Install Composer dependencies - normal if: ${{ matrix.php != '8.4' }} - uses: "ramsey/composer-install@v2" + uses: "ramsey/composer-install@v3" with: # Bust the cache at least once a month - output format: YYYY-MM. custom-cache-suffix: $(date -u "+%Y-%m") @@ -69,7 +69,7 @@ jobs: # For PHP "nightly", we need to install with ignore platform reqs. - name: Install Composer dependencies - with ignore platform if: ${{ matrix.php == '8.4' }} - uses: "ramsey/composer-install@v2" + uses: "ramsey/composer-install@v3" with: composer-options: --ignore-platform-req=php custom-cache-suffix: $(date -u "+%Y-%m")