From 0357081e51b21b944966d3110b5e52ee3afaafa9 Mon Sep 17 00:00:00 2001 From: Harshdeep Singh <6162866+harsh62@users.noreply.github.com> Date: Fri, 18 Oct 2024 14:10:41 -0400 Subject: [PATCH] fixing latest versions --- .../get_platform_parameters/action.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/composite_actions/get_platform_parameters/action.yml b/.github/composite_actions/get_platform_parameters/action.yml index 8fd4ecc98e..c7e2ffdeda 100644 --- a/.github/composite_actions/get_platform_parameters/action.yml +++ b/.github/composite_actions/get_platform_parameters/action.yml @@ -66,8 +66,8 @@ runs: case $INPUT_PLATFORM/$INPUT_XCODE_VERSION in iOS/latest) - DEVICE="iPhone 15" - OS_VERSION="17.4" + DEVICE="iPhone 16" + OS_VERSION="18.0" ;; iOS/*) DEVICE="iPhone 14" @@ -75,15 +75,15 @@ runs: ;; tvOS/latest) DEVICE="Apple TV 4K (3rd generation)" - OS_VERSION="17.4" + OS_VERSION="18.0" ;; tvOS/*) DEVICE="Apple TV 4K (3rd generation)" OS_VERSION="17.0" ;; watchOS/latest) - DEVICE="Apple Watch Series 9 (45mm)" - OS_VERSION="10.4" + DEVICE="Apple Watch Series 10 (46mm)" + OS_VERSION="11.0" ;; watchOS/*) DEVICE="Apple Watch Series 8 (45mm)" @@ -91,11 +91,11 @@ runs: ;; visionOS/latest) DEVICE="Apple Vision Pro" - OS_VERSION="1.1" + OS_VERSION="2.0" ;; visionOS/*) DEVICE="Apple Vision Pro" - OS_VERSION="2.0" + OS_VERSION="1.0" ;; esac