From 4405b2ac8ff1ae42ec55f71be359637fa84fdc40 Mon Sep 17 00:00:00 2001 From: James Cole Date: Mon, 19 Jan 2026 07:51:49 +0100 Subject: [PATCH] Update PHP version setup in release workflow Set default PHP version to 8.4 if not provided. Signed-off-by: James Cole --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3e7a2b9f46..28fad3b8a8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,7 @@ jobs: - name: Setup PHP uses: shivammathur/setup-php@v2 with: - php-version: ${{ github.event.inputs.phpversion }} + php-version: ${{ github.event.inputs.phpversion || '8.4' }} extensions: mbstring, intl, zip, bcmath - name: Switch and pull run: |