From b9c31fab55c9782c3475599c7044440f0cbf8398 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Fri, 16 Dec 2022 10:46:11 +0800 Subject: [PATCH] wip Signed-off-by: Mior Muhammad Zaki --- .github/workflows/tests.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index aeb1420dffc4..9034d37f3f47 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -145,12 +145,20 @@ jobs: command: composer require guzzlehttp/guzzle:~7.2 --no-interaction --no-update if: matrix.php >= 8 + - name: Set Minimum PHP 8.1 Versions + uses: nick-fields/retry@v2 + with: + timeout_minutes: 5 + max_attempts: 5 + command: composer require ramsey/collection:~1.2 brick/math:~0.9.3 symfony/css-selector:~6.0 --no-interaction --no-update + if: matrix.php >= 8.1 + - name: Set Minimum PHP 8.2 Versions uses: nick-fields/retry@v2 with: timeout_minutes: 5 max_attempts: 5 - command: composer require guzzlehttp/guzzle:~7.5 guzzlehttp/psr7:~2.4 predis/predis:^2.0.2 --no-interaction --no-update + command: composer require guzzlehttp/guzzle:~7.5 guzzlehttp/psr7:~2.4 predis/predis:~2.0.2 --no-interaction --no-update if: matrix.php >= 8.2 - name: Install dependencies