Skip to content

Commit e903fa6

Browse files
committed
chore(actions): bump min swift version to 5.9 and updated CI jobs (#4916)
1 parent 5701237 commit e903fa6

File tree

44 files changed

+2100
-2006
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2100
-2006
lines changed

.github/composite_actions/launch_android_emulator/dist/main.cjs

Lines changed: 492 additions & 487 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/composite_actions/launch_android_emulator/dist/main.cjs.map

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/composite_actions/launch_ios_simulator/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Launches an iOS simulator and caches it for further action runs
33
inputs:
44
ios-version:
55
description: The iOS version
6-
default: "16"
6+
default: "latest"
77
runs:
88
using: "node16"
99
main: "dist/index.mjs"

.github/composite_actions/launch_ios_simulator/dist/main.cjs

Lines changed: 458 additions & 408 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/composite_actions/launch_ios_simulator/dist/main.cjs.map

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/composite_actions/log_cw_metric/dist/main.cjs

Lines changed: 479 additions & 471 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/composite_actions/log_cw_metric/dist/main.cjs.map

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/composite_actions/setup_chromedriver/dist/main.cjs

Lines changed: 492 additions & 495 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/composite_actions/setup_chromedriver/dist/main.cjs.map

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/actions.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ jobs:
7373
fail-fast: false
7474
matrix:
7575
os:
76-
- macos-latest
76+
# TODO(equartey): Change to `macos-latest` after github migrates their runners - https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/
77+
- macos-14
7778
- ubuntu-latest
7879
runs-on: ${{ matrix.os }}
7980
steps:
@@ -88,16 +89,17 @@ jobs:
8889
# It is recommended that all actions requiring a simulator be run on XL runners
8990
# since the process of installing new runtimes and building with Xcode can be
9091
# incredibly slow otherwise.
91-
runs-on: macos-latest-xl
92+
# TODO(equartey): Change to `macos-latest` after github migrates their runners - https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/
93+
runs-on: macos-14-xlarge
9294
# Timeout as a stop-gap for further investigating. This action should never need more
9395
# than 20 minutes to do its work.
9496
timeout-minutes: 20
9597
strategy:
9698
fail-fast: false
9799
matrix:
98100
ios-version:
99-
- "14.5"
100-
- "16"
101+
- "15.0"
102+
- "latest"
101103
steps:
102104
- name: Git Checkout
103105
uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # 3.6.0

0 commit comments

Comments
 (0)