Closed remarkablemark closed 7 months ago
Hi @remarkablemark , What image label do you use in YAML workflow?
If it is runs-on: macos-latest
, you could be impacted by macos-latest
migration. GitHub Actions team is currently migrating macos-latest
to point to MacOS 14 instead of MacOS 12 so your workflows might be switched automatically. See https://github.com/github/roadmap/issues/926 and https://github.blog/changelog/2024-04-01-macos-14-sonoma-is-generally-available-and-the-latest-macos-runner-image/ for details.
The mitigation for this issue is updating workflow YAML to pin to specific macos version runs-on: macos-12
or runs-on: macos-13
. Both these images still contain Xcode 14.2 according to docs: https://github.com/actions/runner-images?tab=readme-ov-file#available-images
Does this mean Xcode version 14.2 is no longer supported?
MacOS 13 will be supported one more year at least. As for the MacOS 12, not sure when it will be deprecated.
@maxim-lobanov thanks for the response! We're using macos-latest
so that's probably the reason. I was able to upgrade the Xcode version to 14.3
so it's no longer throwing an error.
This started failing in GitHub Actions today:
Does this mean Xcode version 14.2 is no longer supported?