From 055bab2f3fd9ea916839de6e5d23d712d3f7fb0e Mon Sep 17 00:00:00 2001 From: Iori Yanokura Date: Sat, 4 Oct 2025 21:32:49 +0900 Subject: [PATCH] ci: Update macOS runner from deprecated macos-13 to macos-15-intel - Replace macos-13 with macos-15-intel for x86_64 testing - Reference: GitHub Actions macos-13 retirement (Dec 4, 2025) Reference: https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/ --- .github/workflows/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml index 863ef081..1f808135 100644 --- a/.github/workflows/config.yml +++ b/.github/workflows/config.yml @@ -199,7 +199,11 @@ jobs: # Note: To test macOS-x with Intel architecture, # you need to use the paid macOS-x-large runner, as macOS-x is grouped with ARM-based runners. # https://docs.github.com/en/actions/concepts/runners/about-larger-runners - - runs-on: macos-13 # Intel (x64) + # Note: macos-13 is deprecated and will be retired by December 4, 2025 + # Using macos-15-intel for Intel x86_64 architecture testing + # macos-latest (ARM-based Apple Silicon) for general testing + # https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/ + - runs-on: macos-15-intel # Intel (x64) - runs-on: macos-14 # ARM64 (Apple Silicon) - runs-on: macos-15 # ARM64 (Apple Silicon) fail-fast: false