From ccd5b5a7054ab54eb300ef54d12e1b34a2d9d29e Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Thu, 12 Dec 2024 14:06:47 +0100 Subject: [PATCH] CI: Select Xcode 16.1 explicitly instead of `latest-stable` What `latest-stable` means exactly also depends on the image version we're running the workflow on, and unfortunately this can vary wildly between GitHub runners. Fixate the version to 16.1 for now. This version will need to be updated as soon as we want to increase the minimum supported compiler version. --- .github/actions/setup/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 6688bbe35fc..46121df2408 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -49,7 +49,7 @@ runs: if: ${{ inputs.os == 'macOS' || inputs.os == 'Android' }} uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: latest-stable + xcode-version: 16.1 - name: 'Install Dependencies' if: ${{ inputs.os == 'macOS' || inputs.os == 'Android' }}