From 3bcce36762cc54b0a6fde4d86402d7be20f1211d Mon Sep 17 00:00:00 2001 From: Timm Friebe Date: Fri, 1 Mar 2024 21:42:42 +0100 Subject: [PATCH] Add PHP 8.4, upgrade XP --- .github/workflows/ci.yml | 6 +++--- ChangeLog.md | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ba82f8..ed11c63 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,11 +11,11 @@ jobs: if: "!contains(github.event.head_commit.message, 'skip ci')" name: PHP ${{ matrix.php-versions }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} - continue-on-error: ${{ matrix.php-versions == '8.2' }} + continue-on-error: ${{ matrix.php-versions >= '8.4' }} strategy: fail-fast: false matrix: - php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3'] + php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4'] os: [ubuntu-latest, windows-latest] steps: @@ -51,7 +51,7 @@ jobs: - name: Install dependencies run: > - curl -sSL https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/e/entrypoint/xp-run-8.5.3.sh > xp-run && + curl -sSL https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/e/entrypoint/xp-run-8.8.0.sh > xp-run && composer install --prefer-dist && echo "vendor/autoload.php" > composer.pth diff --git a/ChangeLog.md b/ChangeLog.md index f17a882..8203805 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,8 @@ I/O Collections change log ## ?.?.? / ????-??-?? +* Added PHP 8.4 to the test matrix - @thekid + ## 10.0.2 / 2021-10-21 * Made library compatible with XP 11 - @thekid