From 0f0ae1ca226d03c92bb5b09d297f1cbc1ee86e62 Mon Sep 17 00:00:00 2001 From: John Szumski <784312+jszumski@users.noreply.github.com> Date: Wed, 29 May 2024 15:17:36 -0400 Subject: [PATCH] Update Bazel workflow to use Xcode 15.4 --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0051490..28c0eb5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -63,9 +63,11 @@ jobs: run: Scripts/build.swift spm ${{ matrix.platform }} `which xcpretty` bazel: name: Bazel - runs-on: macOS-12 + runs-on: macOS-latest steps: - name: Checkout Repo uses: actions/checkout@v4 + - name: Select Xcode Version + run: sudo xcode-select --switch /Applications/Xcode_15.4.app/Contents/Developer - name: Build and Test - run: bazel test //... + run: bazel test //... --xcode_version=15.4.0