Skip to content

Commit e91da21

Browse files
committed
chore: Updating workflows to latests Xcode and OS versions.
1 parent b247482 commit e91da21

File tree

6 files changed

+14
-9
lines changed

6 files changed

+14
-9
lines changed

.github/composite_actions/get_platform_parameters/action.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ runs:
4141

4242
- id: get-xcode-version
4343
run: |
44-
LATEST_XCODE_VERSION=16.0.0
44+
LATEST_XCODE_VERSION=16.2.0
4545
MINIMUM_XCODE_VERSION=15.0.1
4646
4747
INPUT_XCODE_VERSION=${{ inputs.xcode_version }}
@@ -67,31 +67,31 @@ runs:
6767
case $INPUT_PLATFORM/$INPUT_XCODE_VERSION in
6868
iOS/latest)
6969
DEVICE="iPhone 16"
70-
OS_VERSION="18.0"
70+
OS_VERSION="18.2"
7171
;;
7272
iOS/*)
73-
DEVICE="iPhone 14"
74-
OS_VERSION="17.0.1"
73+
DEVICE="iPhone 15"
74+
OS_VERSION="17.0"
7575
;;
7676
tvOS/latest)
7777
DEVICE="Apple TV 4K (3rd generation)"
78-
OS_VERSION="18.0"
78+
OS_VERSION="18.2"
7979
;;
8080
tvOS/*)
8181
DEVICE="Apple TV 4K (3rd generation)"
8282
OS_VERSION="17.0"
8383
;;
8484
watchOS/latest)
8585
DEVICE="Apple Watch Series 10 (46mm)"
86-
OS_VERSION="11.0"
86+
OS_VERSION="11.2"
8787
;;
8888
watchOS/*)
89-
DEVICE="Apple Watch Series 8 (45mm)"
89+
DEVICE="Apple Watch Series 7 (45mm)"
9090
OS_VERSION="10.0"
9191
;;
9292
visionOS/latest)
9393
DEVICE="Apple Vision Pro"
94-
OS_VERSION="2.0"
94+
OS_VERSION="2.2"
9595
;;
9696
visionOS/*)
9797
DEVICE="Apple Vision Pro"

.github/workflows/build_scheme.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656
5757
- name: Attempt to restore the build cache from main
5858
id: build-cache
59+
if: steps.dependencies-cache.outputs.cache-hit
5960
timeout-minutes: 4
6061
continue-on-error: true
6162
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1

.github/workflows/integ_test_auth_webauthn.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656
5757
- name: Attempt to restore the build cache
5858
id: build-cache
59+
if: steps.dependencies-cache.outputs.cache-hit
5960
timeout-minutes: 4
6061
continue-on-error: true
6162
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1

.github/workflows/integ_test_push_notifications.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ permissions:
2626
jobs:
2727
push-notification-integration-tests:
2828
name: ${{ matrix.platform }} Tests | PushNotificationHostApp
29-
runs-on: macos-latest
29+
runs-on: macos-15
3030
timeout-minutes: 30
3131
environment: IntegrationTest
3232
strategy:
@@ -79,6 +79,7 @@ jobs:
7979
8080
- name: Attempt to restore the build cache
8181
id: build-cache
82+
if: steps.dependencies-cache.outputs.cache-hit
8283
timeout-minutes: 4
8384
continue-on-error: true
8485
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1

.github/workflows/run_integration_tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ jobs:
8282
8383
- name: Attempt to restore the build cache
8484
id: build-cache
85+
if: steps.dependencies-cache.outputs.cache-hit
8586
timeout-minutes: 4
8687
continue-on-error: true
8788
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1

.github/workflows/run_unit_tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ jobs:
7070
7171
- name: Attempt to restore the build cache
7272
id: build-cache
73+
if: steps.dependencies-cache.outputs.cache-hit
7374
timeout-minutes: 4
7475
continue-on-error: true
7576
uses: actions/cache/restore@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1

0 commit comments

Comments
 (0)