Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Commit

Permalink
fix: set the default Xcode version to 14.0.1 (#212)
Browse files Browse the repository at this point in the history
Last night, multiple projects that build on macOS runners started
failing. It looks like GitHub rolled out [a new
image](https://github.com/actions/runner-images/blob/macOS-12/20230117.3/images/macos/macos-12-Readme.md)
that is causing problems. For now, try using the previous default
version of Xcode, 14.0.1.
  • Loading branch information
cgrindel authored Jan 20, 2023
1 parent 3ab4041 commit b28066d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@ jobs:
env:
USE_BAZEL_VERSION: cgrindel/6.0.0-keith_patch
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '14.0.1'
- name: Confirm Xcode Version
shell: bash
run: |
# Print used xCode version
xcode-select -print-path
xcodebuild -version
- uses: actions/checkout@v3
- uses: cgrindel/gha_set_up_bazel@v1
with:
Expand Down

0 comments on commit b28066d

Please sign in to comment.