| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
This action is intended to switch between pre-installed versions of Xcode for macOS images in GitHub Actions.
The list of all available versions can be found in runner-images repository.
| Argument | Description | Format |
|---|---|---|
| xcode-version | Specify the Xcode version to use | - latest or - latest-stable or - SemVer string or - <semver>-beta |
Notes:
Set the latest stable Xcode version:
jobs:
build:
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
Set the latest Xcode version including beta releases:
jobs:
build:
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest
Set the specific stable version of Xcode:
jobs:
build:
runs-on: macos-15
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '16.4'
Set a specific Xcode version on macos-26:
jobs:
build:
runs-on: macos-26
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '26.3'
The scripts and documentation in this project are released under the MIT License
| Back | FazBrowse Home | New Git URL |