From f6a8f222ad7c6ff553913e60571966f5d8c377f4 Mon Sep 17 00:00:00 2001 From: Seungbin Oh Date: Mon, 25 Sep 2023 21:19:59 +0900 Subject: [PATCH] chore: change to macOS 13 and Xcode 15 --- .github/workflows/build.yml | 4 +++- .github/workflows/test.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 84f39f19..fb5c4ce5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,9 +39,11 @@ jobs: build-ios: name: Build iOS - runs-on: macos-latest + runs-on: macos-13 steps: - uses: actions/checkout@v3 + - name: Select Xcode version + run: sudo xcode-select -s '/Applications/Xcode_15.0.app/Contents/Developer' - name: Set up Flutter uses: subosito/flutter-action@v2 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d2158b2f..3f1ccf61 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,9 +26,11 @@ jobs: integration-android: name: Integration Test on Android - runs-on: macos-latest + runs-on: macos-13 steps: - uses: actions/checkout@v3 + - name: Select Xcode version + run: sudo xcode-select -s '/Applications/Xcode_15.0.app/Contents/Developer' - name: Set up Java uses: actions/setup-java@v3 with: