From 05fad702d0fe550609eb37260a2fa8d994bf5a60 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Thu, 24 Aug 2023 04:16:52 +0200 Subject: [PATCH] GH Actions: minor tweaks to the composer options used Only disregard an upper limit to the PHP restrictions. --- .github/workflows/quicktest.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/quicktest.yml b/.github/workflows/quicktest.yml index 350c09d2..39f8bda0 100644 --- a/.github/workflows/quicktest.yml +++ b/.github/workflows/quicktest.yml @@ -85,7 +85,7 @@ jobs: if: ${{ startsWith( matrix.php, '8' ) || matrix.php == 'latest' }} uses: "ramsey/composer-install@v2" with: - composer-options: --ignore-platform-reqs + composer-options: --ignore-platform-req=php+ custom-cache-suffix: $(date -u "+%Y-%m") - name: Display PHPCS installed standards diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0de1b5eb..142ce574 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -127,7 +127,7 @@ jobs: if: ${{ startsWith( matrix.php, '8' ) }} uses: "ramsey/composer-install@v2" with: - composer-options: --ignore-platform-reqs + composer-options: --ignore-platform-req=php+ custom-cache-suffix: $(date -u "+%Y-%m") - name: Run the unit tests