From cf6c7f9960c9aefea7f9aeac971b4bb7265101c2 Mon Sep 17 00:00:00 2001 From: Alex Date: Mon, 26 Jan 2026 16:07:17 -0600 Subject: [PATCH] chore: use correct SDK version for Xcode build (#25542) chore: use correct SDK version for Xcode --- .github/workflows/build-mobile.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-mobile.yml b/.github/workflows/build-mobile.yml index 239a448bf6..da4827777c 100644 --- a/.github/workflows/build-mobile.yml +++ b/.github/workflows/build-mobile.yml @@ -178,9 +178,12 @@ jobs: contents: read # Run on main branch or workflow_dispatch, or on PRs/other branches (build only, no upload) if: ${{ !github.event.pull_request.head.repo.fork && fromJSON(needs.pre-job.outputs.should_run).mobile == true }} - runs-on: macos-latest + runs-on: macos-15 steps: + - name: Select Xcode 26 + run: sudo xcode-select -s /Applications/Xcode_26.2.app/Contents/Developer + - name: Checkout code uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 with: