From 6a35f36deb0142c9e1efff2167952fa524f05f91 Mon Sep 17 00:00:00 2001 From: Julian Locke Date: Wed, 6 Dec 2023 14:38:36 -0500 Subject: [PATCH 1/2] Add ci timeout and attempt bump macos --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4d5638865..5acb7eb5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,8 @@ on: [pull_request, workflow_dispatch] jobs: test: name: Run Unit Tests - runs-on: macos-latest + runs-on: macos-13 + timeout-minutes: 45 steps: - name: Checkout From 9c404786a31337aa31ca83c052e1eab493e68ae0 Mon Sep 17 00:00:00 2001 From: Julian Locke Date: Wed, 6 Dec 2023 15:03:28 -0500 Subject: [PATCH 2/2] Bump simulator --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5acb7eb5e..f95bac15d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: ACCOUNT_ID_2: ${{ secrets.ACCOUNT_ID_2 }} ACCOUNT_ID_3: ${{ secrets.ACCOUNT_ID_3 }} platform: ${{ 'iOS Simulator' }} - device: ${{ 'iPhone 13' }} + device: ${{ 'iPhone 14' }} run: | xcodebuild -workspace TestSwiftyDropbox/TestSwiftyDropbox.xcworkspace/ -scheme TestSwiftyDropbox_iOS -sdk iphonesimulator \ -destination "platform=$platform,name=$device" \