Skip to content

Commit fdcdc0a

Browse files
committed
GH Actions: PHP 8.4 has been released
* Builds against PHP 8.4 are no longer allowed to fail. * Add _allowed to fail_ build against PHP 8.5. * Update the "tested against" badge in the README. Ref: https://www.php.net/releases/8.4/en.php
1 parent 782d393 commit fdcdc0a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Diff for: .github/workflows/unit-tests.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
29-
php: [ '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.4' ]
29+
php: [ '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.5' ]
3030
dependencies: [ 'lowest', 'stable' ]
3131
extensions: [ '' ]
3232
coverage: [false]
@@ -46,11 +46,11 @@ jobs:
4646
dependencies: 'lowest'
4747
extensions: ''
4848
coverage: true
49-
- php: '8.3'
49+
- php: '8.4'
5050
dependencies: 'stable'
5151
extensions: ''
5252
coverage: true
53-
- php: '8.3'
53+
- php: '8.4'
5454
dependencies: 'lowest'
5555
extensions: ''
5656
coverage: true
@@ -68,7 +68,7 @@ jobs:
6868
dependencies: 'dev'
6969
extensions: ''
7070
coverage: false
71-
- php: '8.3'
71+
- php: '8.4'
7272
dependencies: 'dev'
7373
extensions: ''
7474
coverage: false
@@ -79,7 +79,7 @@ jobs:
7979

8080
name: PHP ${{ matrix.php }} on PHPCS ${{ matrix.dependencies }}
8181

82-
continue-on-error: ${{ matrix.php == '8.4' }}
82+
continue-on-error: ${{ matrix.php == '8.5' }}
8383

8484
steps:
8585
- name: Checkout repository

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[![codecov.io](https://codecov.io/gh/WordPress/WordPress-Coding-Standards/graph/badge.svg?token=UzFYn0RzVG&branch=develop)](https://codecov.io/gh/WordPress/WordPress-Coding-Standards?branch=develop)
1111

1212
[![Minimum PHP Version](https://img.shields.io/packagist/php-v/wp-coding-standards/wpcs.svg?maxAge=3600)](https://packagist.org/packages/wp-coding-standards/wpcs)
13-
[![Tested on PHP 5.4 to 8.3](https://img.shields.io/badge/tested%20on-PHP%205.4%20|%205.5%20|%205.6%20|%207.0%20|%207.1%20|%207.2%20|%207.3%20|%207.4%20|%208.0%20|%208.1%20|%208.2%20|%208.3-green.svg?maxAge=2419200)](https://github.com/WordPress/WordPress-Coding-Standards/actions/workflows/unit-tests.yml)
13+
[![Tested on PHP 5.4 to 8.4](https://img.shields.io/badge/tested%20on-PHP%205.4%20|%205.5%20|%205.6%20|%207.0%20|%207.1%20|%207.2%20|%207.3%20|%207.4%20|%208.0%20|%208.1%20|%208.2%20|%208.3%20|%208.4-green.svg?maxAge=2419200)](https://github.com/WordPress/WordPress-Coding-Standards/actions/workflows/unit-tests.yml)
1414

1515
[![License: MIT](https://poser.pugx.org/wp-coding-standards/wpcs/license)](https://github.com/WordPress/WordPress-Coding-Standards/blob/develop/LICENSE)
1616
[![Total Downloads](https://poser.pugx.org/wp-coding-standards/wpcs/downloads)](https://packagist.org/packages/wp-coding-standards/wpcs/stats)

0 commit comments

Comments
 (0)