-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Xcode and xcodebuild versions are not matching #75
Comments
Hey 👋 Could you please confirm that issue is still reproduced for you? jobs:
build:
runs-on: macos-13
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.2-beta'
- run: |
xcode-select -print-path
- run: |
xcodebuild -version I wonder if something on image side is changed again and fixed it 🤔 If it is still reproduced for you, could you run the same workflow in your repo (with |
why not set the explicit version that user wants? I could not set 16.0.0 |
Just ran into this. It's likely been failing silently for a while since we're only now bumping up from 15.1 to 15.4. On our self-hosted runners, the workflow:
Example output: I'm guessing the GitHub actions runners allowed sudoers or something similar, but that's not the default so our self-hosted runners have been failing silently. It'd be nice at least if the action errored out in that case. |
A few weeks ago, the workflow utilizing the macOS-13 runner unexpectedly began to fail. Prior to this, the workflow was functioning correctly, and no modifications were made to the workflow file. The failure stemmed from the fact that the Swift tool version was outdated compared to the one utilized in my project's packages. In my local project, I employ Xcode 15.2, so I specified '15.2-beta' in the workflow.
After an extensive investigation into the potential cause of the issue, I discovered that xcodebuild was pointing to version 14.3.1, leading to the problems encountered.
Three weeks ago, everything was functioning smoothly, and both the Xcode version and xcodebuild matched seamlessly. It appears that an issue was introduced recently, causing the discrepancy.
I urgently request assistance in resolving this matter as it is impeding all of my workflows.
Image version and build link
Version: 20240106.8
Included Software: https://github.com/actions/runner-images/blob/macos-13/20240106.8/images/macos/macos-13-Readme.md
Image Release: https://github.com/actions/runner-images/releases/tag/macos-13%2F20240106.8
Expected behavior
The xcode version and xcodebuild version should match always. i.e.
Actual behavior
The xcode version and xcodebuild version are not matching versions.
The text was updated successfully, but these errors were encountered: