Skip to content

Commit e8296f0

Browse files
committed
No longer allow PHP 8.3 to fail
1 parent 6ed9657 commit e8296f0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: "!contains(github.event.head_commit.message, 'skip ci')"
1212
name: PHP ${{ matrix.php-versions }} on ${{ matrix.os }}
1313
runs-on: ${{ matrix.os }}
14-
continue-on-error: ${{ matrix.php-versions >= '8.3' }}
14+
continue-on-error: ${{ matrix.php-versions >= '8.4' }}
1515
strategy:
1616
fail-fast: false
1717
matrix:
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Install dependencies
5151
run: >
52-
curl -sSL https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/e/entrypoint/xp-run-8.7.0.sh > xp-run &&
52+
curl -sSL https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/e/entrypoint/xp-run-8.8.0.sh > xp-run &&
5353
composer install --prefer-dist &&
5454
echo "vendor/autoload.php" > composer.pth
5555

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ init:
1313
install:
1414
- if exist .\xp (set CACHED=1) else (mkdir .\xp)
1515
- if %CACHED%==0 cd .\xp
16-
- if %CACHED%==0 curl -fsS -o php.zip https://windows.php.net/downloads/releases/archives/php-8.2.11-nts-Win32-vs16-x64.zip
16+
- if %CACHED%==0 curl -fsS -o php.zip https://windows.php.net/downloads/releases/archives/php-8.2.15-nts-Win32-vs16-x64.zip
1717
- if %CACHED%==0 appveyor DownloadFile https://getcomposer.org/composer.phar
18-
- 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
18+
- 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
1919
- if %CACHED%==0 7z x php.zip -y
2020
- if %CACHED%==0 7z x xp.zip -y
2121
- if %CACHED%==0 cd ..

0 commit comments

Comments
 (0)