From 2959f0b387fdf5a8dd6dd3b4d6613bdc6f845b0b Mon Sep 17 00:00:00 2001 From: Arkadiusz Fal Date: Mon, 10 Nov 2025 12:36:15 +0100 Subject: [PATCH] Lower macOS build runner to macOS 15 with Xcode 16.4 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed mac_notarized job to use: - runs-on: macos-15 (was macos-latest) - xcode-version: 16.4 (was 26.0.1) This configuration was previously working for Yattee builds. iOS and tvOS builds remain on macos-latest with Xcode 26.0.1. Reference: https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md 🤖 Generated with Claude Code (https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6899917b..2cd2a71c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -52,7 +52,7 @@ jobs: if-no-files-found: ignore mac_notarized: name: Build and notarize macOS app - runs-on: macos-latest + runs-on: macos-15 steps: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 @@ -66,7 +66,7 @@ jobs: sed -i '' 's/3rd Party Mac Developer Application/Developer ID Application/' Yattee.xcodeproj/project.pbxproj - uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: '26.0.1' + xcode-version: '16.4' - uses: maierj/fastlane-action@v3.0.0 with: lane: mac build_and_notarize