From 5141b288aeadec6cdbb39f3831d1e8c61de25a84 Mon Sep 17 00:00:00 2001 From: gwleuverink Date: Wed, 25 Feb 2026 20:58:44 +0100 Subject: [PATCH 1/2] bump SPC version to 2.8.2 --- .github/workflows/build-php.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-php.yml b/.github/workflows/build-php.yml index ef1a4da03..e08fb4ba5 100644 --- a/.github/workflows/build-php.yml +++ b/.github/workflows/build-php.yml @@ -12,7 +12,7 @@ on: env: GITHUB_TOKEN: ${{ secrets.PAT }} - SPC_VERSION: 2.7.1 + SPC_VERSION: 2.8.2 jobs: build: @@ -56,7 +56,7 @@ jobs: - name: Set SPC URL for windows-latest shell: bash if: matrix.os == 'windows-latest' - run: | + run: | echo "SPC_URL=https://github.com/crazywhalecc/static-php-cli/releases/download/${{ env.SPC_VERSION }}/spc-windows-x64.exe" >> $GITHUB_ENV echo "SPC_BINARY=spc.exe" >> $GITHUB_ENV From a365ff079a8959cb346d29203d8f7fe8b2246b2e Mon Sep 17 00:00:00 2001 From: gwleuverink Date: Wed, 25 Feb 2026 21:16:39 +0100 Subject: [PATCH 2/2] update mac images --- .github/workflows/build-php.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-php.yml b/.github/workflows/build-php.yml index e08fb4ba5..5705ded9c 100644 --- a/.github/workflows/build-php.yml +++ b/.github/workflows/build-php.yml @@ -22,7 +22,7 @@ jobs: strategy: matrix: version: ["8.3", "8.4"] - os: [ "macos-13", "macos-latest", "windows-latest", "ubuntu-latest", "ubuntu-24.04-arm" ] + os: [ "macos-15-intel", "macos-latest", "windows-latest", "ubuntu-latest", "ubuntu-24.04-arm" ] continue-on-error: true @@ -33,9 +33,9 @@ jobs: shell: bash run: echo "SPC_BINARY=spc" >> $GITHUB_ENV - - name: Set SPC URL for macos-13 + - name: Set SPC URL for macos-15-intel shell: bash - if: matrix.os == 'macos-13' + if: matrix.os == 'macos-15-intel' run: echo "SPC_URL=https://github.com/crazywhalecc/static-php-cli/releases/download/${{ env.SPC_VERSION }}/spc-macos-x86_64.tar.gz" >> $GITHUB_ENV - name: Set SPC URL for macos-latest