From 04b45a896137ac0a6ff59a7cdd4f0e6804e827b4 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Tue, 1 Oct 2024 16:08:41 -0400 Subject: [PATCH] CI: Switch to the stable Xcode 16 toolchain We had to use beta before Xcode 16 was officially released, but we can now use the stable version. --- .github/actions/setup/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index dda8eb27f27..e4af149df20 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -46,11 +46,11 @@ runs: python3 -m pip install --upgrade pip pip3 install requests six - - name: 'Switch to latest Xcode beta' + - name: 'Select latest Xcode' if: ${{ inputs.os == 'macOS' || inputs.os == 'Android' }} uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: latest + xcode-version: latest-stable - name: 'Install Dependencies' if: ${{ inputs.os == 'macOS' || inputs.os == 'Android' }}