mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
2d3285ab60
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/51014 Starting from the [24th of April](https://developer.apple.com/news/upcoming-requirements/?id=02212025a), Apple only accepts app built with Xcode 16.0 or greater This change bumps our CI to ensure that everything works with Xcode 16. ## Changelog: [Internal] - Bump CI to Xcode 16.2 Reviewed By: javache Differential Revision: D73924819 fbshipit-source-id: 82cdca5e12cee505de6e97513c07678776642d88
15 lines
415 B
YAML
15 lines
415 B
YAML
name: Setup xcode
|
|
description: 'Set up your GitHub Actions workflow with a specific version of xcode'
|
|
inputs:
|
|
xcode-version:
|
|
description: 'The xcode version to use'
|
|
required: false
|
|
default: '16.2.0'
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup xcode
|
|
uses: maxim-lobanov/setup-xcode@60606e260d2fc5762a71e64e74b2174e8ea3c8bd
|
|
with:
|
|
xcode-version: ${{ inputs.xcode-version }}
|