diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9851587a..2735a616 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.3' }} strategy: fail-fast: false matrix: - php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] + 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: @@ -52,7 +52,7 @@ jobs: - name: Install dependencies run: > - curl -sSL https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/e/entrypoint/xp-run-8.6.2.sh > xp-run && + curl -sSL https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/e/entrypoint/xp-run-8.7.0.sh > xp-run && composer install --prefer-dist && echo "vendor/autoload.php" > composer.pth diff --git a/ChangeLog.md b/ChangeLog.md index 2cb92764..c5f25db9 100755 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -5,6 +5,7 @@ Imaging APIs for the XP Framework ChangeLog ## 10.2.0 / 2023-11-04 +* Added PHP 8.3 and PHP 8.4 to test matrix - @thekid * Merged PR #2: Add Color::intValue() to convert colors to ARGB color ints (@thekid)