From 4cd8bc7440e2db4f818d5e716ce364a0b19b88ab Mon Sep 17 00:00:00 2001 From: jrfnl Date: Sat, 25 Dec 2021 19:51:09 +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/ci.yml | 6 +++--- .github/workflows/psalm.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ed6e34..aae0a72 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: run: composer self-update --1 - name: Install Composer dependencies - uses: "ramsey/composer-install@v1" + uses: "ramsey/composer-install@v2" - name: PHPUnit tests run: vendor/bin/phpunit @@ -58,11 +58,11 @@ jobs: - name: Install Composer dependencies (PHP < 8.1) if: ${{ matrix.php-versions != '8.1' }} - uses: "ramsey/composer-install@v1" + uses: "ramsey/composer-install@v2" - name: Install Composer dependencies - ignore-platform-reqs (PHP 8.1) if: ${{ matrix.php-versions == '8.1' }} - uses: "ramsey/composer-install@v1" + uses: "ramsey/composer-install@v2" with: composer-options: --ignore-platform-reqs diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml index 43aeeea..f547666 100644 --- a/.github/workflows/psalm.yml +++ b/.github/workflows/psalm.yml @@ -22,7 +22,7 @@ jobs: coverage: none - name: Install Composer dependencies - uses: "ramsey/composer-install@v1" + uses: "ramsey/composer-install@v2" with: composer-options: --no-dev