Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try PHP 8.3 compatibility #2600

Merged
merged 1 commit into from Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e-cypress.yml
Expand Up @@ -17,7 +17,7 @@ on:
phpVersion:
required: false
type: string
default: "8.2"
default: "8.3"
installPath:
required: false
type: string
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-e2e.yml
Expand Up @@ -29,7 +29,7 @@ jobs:
- "" # Default theme is TwentyTwentyThree
php: # Test against minimum and latest PHP versions.
- "7.4"
- "8.2"
- "8.3"
with:
wpVersion: "WordPress/WordPress#${{matrix.wp}}"
theme: ${{matrix.theme}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-php-unit.yml
Expand Up @@ -6,7 +6,7 @@ on:
phpVersion:
required: false
type: string
default: '8.1'
default: '8.3'
wpVersion:
required: false
type: string
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test-php.yml
Expand Up @@ -8,11 +8,10 @@ on:
jobs:
# PHP Unit testing
# Unit testing should be run across WP current, previous, and major before previous.
# Unit tests should be run across all supported versions of PHP.
php_unit_versions_matrix:
strategy:
matrix:
php: ['7.4','8.0','8.1','8.2']
php: ['7.4','8.3']
wp: ['6.4', '6.3']
name: PHP Unit ${{ matrix.php }} | WP Version ${{ matrix.wp }}
uses: ./.github/workflows/test-php-unit.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-wp-next.yml
Expand Up @@ -47,7 +47,7 @@ jobs:
name: PHP ${{ matrix.php }} WP Next Version
strategy:
matrix:
php: ['7.4','8.0','8.1','8.2']
php: ['7.4','8.3']
uses: ./.github/workflows/test-php-unit.yml
with:
phpVersion: ${{ matrix.php }}
Expand Down