From 1eee2fbf115d44a74c0dd84e318aa60d7b8ab085 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Tue, 3 Oct 2023 21:29:41 -0700 Subject: [PATCH] CI: Switch to latest macOS and latest stable Xcode Switch the CI image to the latest stable OS version, and latest stable Xcode version, selected by another action. Signed-off-by: Christopher Snowhill --- .github/workflows/debug.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index a61a02f05..e4fa5e906 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -11,10 +11,14 @@ on: jobs: build: name: Build Universal Cog.app - runs-on: macos-12 + runs-on: macos-latest env: XCODE_DERIVEDDATA_PATH: build steps: + - name: Switch to latest stable Xcode + uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: latest-stable - name: Check out repository uses: actions/checkout@v2 with: