From f48f85f4d82d894fe95fa3ccdc0d956d3c8fbec2 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Fri, 9 Dec 2022 02:43:39 +0100 Subject: [PATCH] GH Actions: various small tweaks Make the `--ignore-platform-reqs` more restrictive (only ignore upper bounds, not lower bounds). --- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index ff425bce8..0eab27744 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -51,7 +51,7 @@ jobs: if: ${{ matrix.php == '8.4' }} uses: "ramsey/composer-install@v3" with: - composer-options: --ignore-platform-req=php + composer-options: "--ignore-platform-req=php+" custom-cache-suffix: $(date -u "+%Y-%m") - name: Lint against parse errors diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d252feb4e..0489aba01 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -71,7 +71,7 @@ jobs: if: ${{ matrix.php == '8.4' }} uses: "ramsey/composer-install@v3" with: - composer-options: --ignore-platform-req=php + composer-options: "--ignore-platform-req=php+" custom-cache-suffix: $(date -u "+%Y-%m") - name: Setup problem matcher to provide annotations for PHPUnit