From 8c708acc637789b8ffe5db4b4e9f081dc61a3d23 Mon Sep 17 00:00:00 2001 From: Michael Rebello Date: Tue, 14 Nov 2023 09:19:53 -0800 Subject: [PATCH] Update CI release job to use Xcode 15 (#216) Without this, the release job fails because the `Package.swift` requires a Swift version higher than the GitHub runner's default. --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0fff11c2..2f90b40f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,6 +11,9 @@ jobs: runs-on: macos-13 steps: - uses: actions/checkout@v4 + - name: Select Xcode version + # https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md#xcode + run: sudo xcode-select --switch /Applications/Xcode_15.0.app - uses: bufbuild/buf-setup-action@v1.28.0 with: github_token: ${{ github.token }}