From d5e54942c614d88a5a38e6ea6829775c5c8a7581 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Sun, 11 Feb 2024 08:41:22 +0100 Subject: [PATCH] CI: Enable testing for PHP 8.1, 8.2, 8.3 --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f45ba7a6d..a59644b12 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,13 +11,13 @@ jobs: fail-fast: false matrix: operating-system: [ ubuntu-latest ] - php: [ '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0' ] + php: [ '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ] dependencies: [ 'locked' ] name: PHP ${{ matrix.php }} on ${{ matrix.operating-system }} with ${{ matrix.dependencies }} dependencies steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 name: Checkout repository - name: Setup PHP