From d050e310e207557c4c1b5bea635732cc4cdee907 Mon Sep 17 00:00:00 2001 From: OhKanghoon Date: Sun, 18 Jul 2021 22:05:13 +0900 Subject: [PATCH 1/2] update xcode version in github actions --- .github/workflows/ci.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05583ad..9044fc3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,20 +12,20 @@ jobs: strategy: matrix: env: - - sdk: iphonesimulator13.0 - destination: platform=iOS Simulator,name=iPhone 11 Pro,OS=13.0 + - sdk: iphonesimulator + destination: platform=iOS Simulator,name=iPhone 12 Pro,OS=latest - - sdk: macosx10.15 + - sdk: macosx destination: arch=x86_64 - - sdk: appletvsimulator13.0 - destination: OS=13.0,name=Apple TV + - sdk: appletvsimulator + destination: platform=tvOS Simulator,name=Apple TV,OS=latest steps: - uses: actions/checkout@v1 - - name: Select Xcode - run: sudo xcode-select -s /Applications/Xcode_11.app + - name: Select Xcode 12.4 + run: sudo xcode-select -s /Applications/Xcode_12.4.app - name: Generate Xcode Project run: swift package generate-xcodeproj --enable-code-coverage From 8c4b00ba185734fa523b4f93dcda4e3ab487c764 Mon Sep 17 00:00:00 2001 From: OhKanghoon Date: Sun, 18 Jul 2021 22:09:58 +0900 Subject: [PATCH 2/2] upgrade checkout action version --- .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 9044fc3..430370c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: destination: platform=tvOS Simulator,name=Apple TV,OS=latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v2 - name: Select Xcode 12.4 run: sudo xcode-select -s /Applications/Xcode_12.4.app