From 78918fbbc46217abcc4989eee12efe641ac9842e Mon Sep 17 00:00:00 2001 From: kangddong Date: Tue, 30 Jun 2026 13:34:51 +0900 Subject: [PATCH] fix(ci): pin runner to macos-15 to avoid Xcode 26.6 RC2 build regression Clocks.framework/Modules/module.modulemap fails to find Clocks-Swift.h on Xcode 26.6 RC2 (macos-latest). Pin to macos-15 (Xcode 16.x) until swift-clocks ships a compatible fix or Xcode 26.x reaches stable. Closes #60 Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0139367..c54ac75 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,7 +8,7 @@ on: jobs: build: - runs-on: macos-latest + runs-on: macos-15 steps: - name: Checkout code