diff --git a/.github/workflows/install-test-react-native.yml b/.github/workflows/install-test-react-native.yml index c3b1f97f83..148867cae8 100644 --- a/.github/workflows/install-test-react-native.yml +++ b/.github/workflows/install-test-react-native.yml @@ -63,7 +63,7 @@ jobs: - uses: futureware-tech/simulator-action@v2 if: ${{ matrix.platform == 'ios' }} with: - model: "iPhone 14" + model: "iPhone 15" - name: Install dependencies of the CLI run: npm ci diff --git a/.github/workflows/pr-realm-js.yml b/.github/workflows/pr-realm-js.yml index ba86801af2..e81ab65ed5 100644 --- a/.github/workflows/pr-realm-js.yml +++ b/.github/workflows/pr-realm-js.yml @@ -490,7 +490,7 @@ jobs: - prebuild-apple env: DEVELOPER_DIR: /Applications/Xcode_15.4.app - IOS_DEVICE_NAME: iPhone 14 + IOS_DEVICE_NAME: iPhone 15 # See https://guides.cocoapods.org/using/faq.html#can-i-change-the-default-cocoapods-repositories-folder CP_HOME_DIR: ${{ github.workspace }}/.cocoapods runs-on: macos-latest-large diff --git a/integration-tests/environments/react-native-test-app/harness/runner.js b/integration-tests/environments/react-native-test-app/harness/runner.js index c49aa5fc07..d62e0007e2 100644 --- a/integration-tests/environments/react-native-test-app/harness/runner.js +++ b/integration-tests/environments/react-native-test-app/harness/runner.js @@ -21,7 +21,7 @@ const android = require("./android-cli"); const xcode = require("./xcode-cli"); const logcat = require("./logcat"); -const { IOS_DEVICE_NAME = "iPhone 14", IOS_DEVICE_TYPE_ID = "com.apple.CoreSimulator.SimDeviceType.iPhone-14" } = +const { IOS_DEVICE_NAME = "iPhone 15", IOS_DEVICE_TYPE_ID = "com.apple.CoreSimulator.SimDeviceType.iPhone-15" } = process.env; const { MOCHA_REMOTE_PORT, PLATFORM, SPAWN_LOGCAT, SKIP_RUNNER, RETRY_DELAY, RETRIES } = process.env;