Skip to content

Commit 0cc05ba

Browse files
authored
Merge pull request #444 from beyondwords-io/s-6559-test-against-support-php4
PHP 8.4 support
2 parents 62dde00 + dda6a0e commit 0cc05ba

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/.nginx/sites-available/localhost.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ server {
1111
}
1212

1313
location ~ \.php$ {
14-
fastcgi_pass unix:/run/php/php8.3-fpm.sock;
14+
fastcgi_pass unix:/run/php/php8.4-fpm.sock;
1515
include snippets/fastcgi-php.conf;
1616
}
1717
}

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,14 @@ jobs:
121121
uses: actions/cache@v4
122122
with:
123123
path: /tmp/composer-cache
124-
key: ${{ runner.os }}-php8.3-dev-${{ hashFiles('**/composer.lock') }}
124+
key: ${{ runner.os }}-php8.4-dev-${{ hashFiles('**/composer.lock') }}
125125

126126
- name: Install Composer dependencies (dev)
127127
uses: php-actions/composer@v6
128128
with:
129129
dev: yes
130130
args: --ignore-platform-reqs --optimize-autoloader --profile
131-
php_version: '8.3'
131+
php_version: '8.4'
132132

133133
- name: Run GrumPHP code_quality test suite
134134
run: ./vendor/bin/grumphp run --testsuite code_quality
@@ -180,7 +180,7 @@ jobs:
180180
strategy:
181181
fail-fast: false
182182
matrix:
183-
php-version: ['8.3']
183+
php-version: ['8.4']
184184
phpunit-version: ['10']
185185
operating-system: ['ubuntu-latest']
186186
include:
@@ -306,7 +306,7 @@ jobs:
306306
uses: actions/download-artifact@v4
307307
with:
308308
# Publish results only for the latest PHP version
309-
name: PHPUnit Test Results - PHP 8.3
309+
name: PHPUnit Test Results - PHP 8.4
310310
path: .
311311

312312
- name: Setup Pages
@@ -336,7 +336,7 @@ jobs:
336336
# don't fail the entire matrix on failure
337337
fail-fast: false
338338
matrix:
339-
php-version: ['8.3']
339+
php-version: ['8.4']
340340
phpunit-version: ['10']
341341
operating-system: ['ubuntu-latest']
342342
include:

.wp-env.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"core": "WordPress/WordPress#6.7",
3-
"phpVersion": "8.3",
3+
"phpVersion": "8.4",
44
"plugins": [
55
"WP-API/Basic-Auth",
66
"./tests/fixtures/wp-content/plugins/cpt-active",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Github Actions Workflow](https://github.com/beyondwords-io/wordpress-plugin/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/beyondwords-io/wordpress-plugin/actions/workflows/main.yml)
66
[![PHPUnit Code Coverage](https://beyondwords-io.github.io/wordpress-plugin/coverage-badge.svg)](https://beyondwords-io.github.io/wordpress-plugin/dashboard.html)
77
[![Supported WordPress Versions](https://img.shields.io/static/v1?label=&message=5.8+-+6.8&color=blue&logo=wordpress&logoColor=white)](https://wordpress.org/)
8-
[![Supported PHP Versions](https://img.shields.io/static/v1?label=&message=8.0+-+8.3&color=777bb4&logo=php&logoColor=white)](https://www.php.net/)
8+
[![Supported PHP Versions](https://img.shields.io/static/v1?label=&message=8.0+-+8.4&color=777bb4&logo=php&logoColor=white)](https://www.php.net/)
99

1010
## Description
1111

0 commit comments

Comments
 (0)