diff --git a/.github/workflows/deploy_docc.yml b/.github/workflows/deploy_docc.yml index 2ab976e..d3f4ec5 100644 --- a/.github/workflows/deploy_docc.yml +++ b/.github/workflows/deploy_docc.yml @@ -15,7 +15,7 @@ concurrency: jobs: build: - runs-on: macos-14 + runs-on: macos-15 env: DEVELOPER_DIR: /Applications/Xcode_16.2.app/Contents/Developer diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f297ccb..83adf86 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,10 +13,10 @@ concurrency: jobs: test: name: Test - runs-on: macos-14 + runs-on: macos-15 timeout-minutes: 30 env: - DEVELOPER_DIR: "/Applications/Xcode_16.1.app/Contents/Developer" + DEVELOPER_DIR: "/Applications/Xcode_16.2.app/Contents/Developer" steps: - name: Checkout @@ -31,7 +31,7 @@ jobs: -project Examples/Examples.xcodeproj \ -scheme Examples \ -only-testing:WebUITests \ - -destination "platform=iOS Simulator,name=iPhone 16,OS=18.1" \ + -destination "platform=iOS Simulator,name=iPhone 16,OS=18.2" \ -derivedDataPath DerivedData \ -resultBundlePath TestResults/unit_test_result_bundle | \ xcbeautify && exit ${PIPESTATUS[0]} @@ -42,7 +42,7 @@ jobs: -project Examples/Examples.xcodeproj \ -scheme Examples \ -only-testing:ExamplesUITests \ - -destination "platform=iOS Simulator,name=iPhone 16,OS=18.1" \ + -destination "platform=iOS Simulator,name=iPhone 16,OS=18.2" \ -derivedDataPath DerivedData \ -resultBundlePath TestResults/ui_test_result_bundle | \ xcbeautify && exit ${PIPESTATUS[0]}