From 80855d19ec0cc5fe367bf4321295e04a3ef43bba Mon Sep 17 00:00:00 2001 From: Atsushi Matsuo Date: Mon, 25 May 2026 19:52:44 +0900 Subject: [PATCH] Update the workflow file for GitHub Actions to add support for PHP 8.3, PHP 8.4 and PHP 8.5 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01ae978..dd5f9c3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,9 +13,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-version: [ '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2' ] + php-version: [ '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Set up PHP ${{ matrix.php-version }} uses: shivammathur/setup-php@v2 with: @@ -40,7 +40,7 @@ jobs: run: | pear list pear channel-update pear.php.net - pear upgrade --force pear/pear-1.10.1 + pear upgrade --force pear/pear-1.10.18 pear list pear install --force package.xml pear list