Skip to content

Commit ed7a3b1

Browse files
committed
update readme
1 parent 869a873 commit ed7a3b1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The list of all available versions can be found in [runner-images](https://githu
1111
**Notes:**
1212
- `latest-stable` points to the latest stable version of Xcode
1313
- `latest` *includes* beta releases that GitHub actions has installed
14-
- SemVer examples: `14`, `14.1`, `14.3.1`, `^14.3.0` (find more examples in [SemVer cheatsheet](https://devhints.io/semver))
14+
- SemVer examples: `16`, `16.4`, `26.3`, `^16.2.0` (find more examples in [SemVer cheatsheet](https://devhints.io/semver))
1515
- `-beta` suffix after SemVer will only select among beta releases that GitHub actions has installed
1616
- If sets a specific version, wraps it to single quotes in YAML like `'12.0'` to pass it as string because GitHub trimmes trailing `.0` from numbers
1717

@@ -43,22 +43,22 @@ Set the specific stable version of Xcode:
4343
```
4444
jobs:
4545
build:
46-
runs-on: macos-13
46+
runs-on: macos-15
4747
steps:
4848
- uses: maxim-lobanov/setup-xcode@v1
4949
with:
50-
xcode-version: '14.3.1'
50+
xcode-version: '16.4'
5151
```
5252

53-
Set the specific beta version of Xcode:
53+
Set a specific Xcode version on `macos-26`:
5454
```
5555
jobs:
5656
build:
57-
runs-on: macos-13
57+
runs-on: macos-26
5858
steps:
5959
- uses: maxim-lobanov/setup-xcode@v1
6060
with:
61-
xcode-version: '15.0-beta'
61+
xcode-version: '26.3'
6262
```
6363
# License
6464
The scripts and documentation in this project are released under the [MIT License](LICENSE)

0 commit comments

Comments
 (0)