From f01a7d19110ec0ebea5c6b899138b3f7df4330d2 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Fri, 24 Dec 2021 04:59:20 +0100 Subject: [PATCH] GH Actions: version update for `ramsey/composer-install` The action used to install Composer packages and handle the caching has released a new major (and some follow-up patch releases), which means, the action reference needs to be updated to benefit from it. Refs: * https://github.com/ramsey/composer-install/releases/tag/2.0.0 * https://github.com/ramsey/composer-install/releases/tag/2.0.1 * https://github.com/ramsey/composer-install/releases/tag/2.0.2 --- .github/workflows/cs.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cs.yml b/.github/workflows/cs.yml index 2bee7ce..f96509a 100644 --- a/.github/workflows/cs.yml +++ b/.github/workflows/cs.yml @@ -31,7 +31,7 @@ jobs: # Install dependencies and handle caching in one go. # @link https://github.com/marketplace/actions/install-composer-dependencies - name: Install Composer dependencies - uses: "ramsey/composer-install@v1" + uses: "ramsey/composer-install@v2" - name: Check PHP code style continue-on-error: true diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index edc9472..7be78b0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,12 +44,12 @@ jobs: # @link https://github.com/marketplace/actions/install-composer-dependencies - name: Install Composer dependencies - normal if: ${{ matrix.experimental == false }} - uses: "ramsey/composer-install@v1" + uses: "ramsey/composer-install@v2" # For the PHP "nightly", we need to install with ignore platform reqs as not all dependencies allow it. - name: Install Composer dependencies - with ignore platform if: ${{ matrix.experimental == true }} - uses: "ramsey/composer-install@v1" + uses: "ramsey/composer-install@v2" with: composer-options: --ignore-platform-reqs