From a02c93524b1c0fe9970ee3d9feddc217e3a1a382 Mon Sep 17 00:00:00 2001 From: OS-pedrogustavobilro Date: Fri, 17 Apr 2026 16:15:48 +0100 Subject: [PATCH] chore(ci): Use Xcode 26 --- .github/actions/setup-tools/action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-tools/action.yml b/.github/actions/setup-tools/action.yml index 5c8264b..b8ab65e 100644 --- a/.github/actions/setup-tools/action.yml +++ b/.github/actions/setup-tools/action.yml @@ -42,4 +42,9 @@ runs: - name: Install dependencies if: inputs.skip-install-on-cache-hit == 'false' || (inputs.skip-install-on-cache-hit == 'true' && steps.cache-pnpm-store.cache-hit == 'false') shell: bash - run: pnpm install \ No newline at end of file + run: pnpm install + + - name: Set Xcode 26.0 # minimum support Xcode version by Capacitor 8 + if: runner.os == 'macOS' + shell: bash + run: sudo xcode-select --switch /Applications/Xcode_26.0.app \ No newline at end of file