From 32e63af6840ded893c7788b8330a82674edd59a1 Mon Sep 17 00:00:00 2001 From: Derek Bailey Date: Mon, 23 Dec 2024 09:10:46 -0800 Subject: [PATCH] Kotlin MacOs switch to macos-13 Switch off of macos-latest which no longer has the 14.3 xcode installed. Version macos-13 does. We should probably update our kotlin though. --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 48aa5905a10..0418df3281a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -382,13 +382,15 @@ jobs: build-kotlin-macos: name: Build Kotlin MacOS - runs-on: macos-latest + runs-on: macos-13 steps: - name: Checkout uses: actions/checkout@v3 # Force Xcode 14.3 since Xcode 15 doesnt support older versions of # kotlin. For Xcode 15, kotlin should be bumpped to 1.9.10 # https://stackoverflow.com/a/77150623 + # For now, run with macos-13 which has this 14.3 installed: + # https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md#xcode - name: Set up Xcode version run: sudo xcode-select -s /Applications/Xcode_14.3.app/Contents/Developer - uses: gradle/wrapper-validation-action@v1.0.5