maxim-lobanov / setup-xcode

Set up your GitHub Actions workflow with a specific version of Xcode
MIT License
280 stars 28 forks source link

Update & support Xcode version 14.1 #59

Closed anatoliykant closed 1 year ago

anatoliykant commented 1 year ago

Thx for the great action. Could you please update it and support Xcode version 14.1?

maxim-lobanov commented 1 year ago

Hey @anatoliykant , What exact problem do you have with using Xcode 14.1? This action is not required any manual adaptation for new Xcode versions and just consume Xcode versions which GitHub Actions provide on images.

If you use macos-12 image, Xcode 14.1 should be available on it. See this example:

jobs:
  build:
    runs-on: macos-12
    steps:
    - uses: maxim-lobanov/setup-xcode@v1
      with:
        xcode-version: 14.1

You can use either 14.1 or latest-stable in xcode-version input on macOS 12 image to get Xcode 14.1

anatoliykant commented 1 year ago

Thx, Maxim. I did it.