From 553d74d1f323d3c638ae5a4b96ce605ed4fb670c Mon Sep 17 00:00:00 2001 From: IanM Date: Wed, 20 Nov 2024 20:19:10 +0000 Subject: [PATCH] chore: enable 8.4 flows --- .github/workflows/REUSABLE_backend.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/REUSABLE_backend.yml b/.github/workflows/REUSABLE_backend.yml index f511adad13..bd0b92d0be 100644 --- a/.github/workflows/REUSABLE_backend.yml +++ b/.github/workflows/REUSABLE_backend.yml @@ -25,7 +25,7 @@ on: description: Versions of PHP to test with. Should be array of strings encoded as JSON array type: string required: false - default: '["7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]' + default: '["7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]' php_extensions: description: PHP extensions to install. @@ -105,8 +105,8 @@ jobs: php_ini_values: error_reporting=E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED - php: 8.3 php_ini_values: error_reporting=E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED - # - php: 8.4 - # php_ini_values: error_reporting=E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED + - php: 8.4 + php_ini_values: error_reporting=E_ALL & ~E_DEPRECATED & ~E_USER_DEPRECATED # To reduce number of actions, we exclude some PHP versions from running with some DB versions. exclude: @@ -179,8 +179,8 @@ jobs: strategy: matrix: php: ${{ fromJSON(inputs.php_versions) }} - # exclude: - # - php: 8.4 + exclude: + - php: 8.4 name: 'PHPStan PHP ${{ matrix.php }}'