From 86e85df22dabef846b0536ab85a88bfd85cf0c4b Mon Sep 17 00:00:00 2001 From: Baptiste Fotia Date: Tue, 2 Jan 2024 11:43:06 +0100 Subject: [PATCH] ci(php): Update the release of PHP 8.0 to 8.2 I used the readonly properties (https://www.php.net/releases/8.1/en.php) in my code and the ci is blocked. I updated the release of PHP 8.0 to 8.2 and it's in Nextcloud's recommandations to use PHP8.2 (https://docs.nextcloud.com/server/27/admin_manual/installation/system_requirements.html). Signed-off-by: Baptiste Fotia --- .github/workflows/php.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 4fcf096d2..7de8aad72 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -12,10 +12,10 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: [8.0] + php-versions: [8.2] nextcloud-versions: ['stable25', 'master'] include: - - php: 8.0 + - php: 8.2 nextcloud-version: master name: Nextcloud ${{ matrix.nextcloud-versions }} php${{ matrix.php-versions }} unit tests