From 6c8539283783a63db9de868c30523dddf211559f Mon Sep 17 00:00:00 2001 From: vol4onok Date: Wed, 3 Jan 2024 14:18:53 +0200 Subject: [PATCH] SDK-5711: removed php 7.4 from support --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37d6c71..7a816a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,11 +48,11 @@ jobs: run: composer --version - name: Composer install - if: ${{ matrix.php-version != '7.4' }} + if: ${{ matrix.php-version != '8.0' }} run: composer install - name: Composer install - if: ${{ matrix.php-version == '7.4' }} + if: ${{ matrix.php-version == '8.0' }} run: composer update --prefer-lowest - name: Run PHPStan