diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fc7d3b24..b324e12a 100755 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ 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.3' }} + continue-on-error: ${{ matrix.php-versions >= '8.4' }} strategy: fail-fast: false matrix: @@ -49,7 +49,7 @@ jobs: - name: Install dependencies run: > - curl -sSL https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/e/entrypoint/xp-run-8.7.0.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/appveyor.yml b/appveyor.yml index bcad624c..f91889e5 100755 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,9 +13,9 @@ init: install: - if exist .\xp (set CACHED=1) else (mkdir .\xp) - if %CACHED%==0 cd .\xp - - if %CACHED%==0 curl -fsS -o php.zip https://windows.php.net/downloads/releases/archives/php-8.2.11-nts-Win32-vs16-x64.zip + - if %CACHED%==0 curl -fsS -o php.zip https://windows.php.net/downloads/releases/archives/php-8.2.15-nts-Win32-vs16-x64.zip - if %CACHED%==0 appveyor DownloadFile https://getcomposer.org/composer.phar - - if %CACHED%==0 appveyor DownloadFile https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/z/zip/xp-runners_8.7.0.zip -FileName xp.zip + - if %CACHED%==0 appveyor DownloadFile https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/z/zip/xp-runners_8.8.0.zip -FileName xp.zip - if %CACHED%==0 7z x php.zip -y - if %CACHED%==0 7z x xp.zip -y - if %CACHED%==0 cd ..