From 181f13a9d8d79c8bacca29fed051fd94635e4706 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Thu, 28 Nov 2024 17:41:58 -0600 Subject: [PATCH] fix unit tests on PHP 8.3/8.4 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8c9b64f8..465fe246 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: - name: Composer Install run: composer install --no-interaction --no-cache - name: Make Tests Compatiable With PHPUnit 9+ - if: contains(fromJSON('["7.3", "7.4", "8.0", "8.1", "8.2"]'), matrix.php-version) + if: contains(fromJSON('["7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]'), matrix.php-version) run: php tests/make_compatible_with_phpunit9.php - name: Setup Secure Shell Functional Tests if: matrix.os == 'ubuntu-latest'