From 438f7d193b3660d1f5a54760dc2fb3f5bce94c98 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Thu, 2 Jan 2025 13:07:23 +0100 Subject: [PATCH] CI: Enable tests on PHP 8.2, 8.3, 8.4 --- .github/workflows/php.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index b87b7ba6..be3d7eab 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -6,11 +6,11 @@ jobs: strategy: fail-fast: false matrix: - php: [ '7.2', '7.3', '7.4', '8.0', '8.1' ] + php: [ '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ] name: PHP ${{ matrix.php }} steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: fetch-depth: 10