Skip to content

Commit 742f85a

Browse files
committed
Replace deprecated macos-13 with macos-15-intel for x86_64 testing
- macos-13 will be retired by December 4, 2025 Reference: https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/
1 parent 1c76a5c commit 742f85a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/config.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -203,10 +203,11 @@ jobs:
203203
matrix:
204204
include:
205205
# https://github.com/actions/runner-images/tree/main/images/macos
206-
# Note: To test macOS-x with Intel architecture,
207-
# you need to use the paid macOS-x-large runner, as macOS-x is grouped with ARM-based runners.
208-
# https://docs.github.com/en/actions/concepts/runners/about-larger-runners
209-
- runs-on: macos-13 # Intel (x64)
206+
# Note: macos-13 is deprecated and will be retired by December 4, 2025
207+
# https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/
208+
# Using macos-15-intel for Intel x86_64 architecture testing
209+
# macos-latest (ARM-based Apple Silicon) for general testing
210+
- runs-on: macos-15-intel # Intel (x64) - replacement for deprecated macos-13
210211
- runs-on: macos-14 # ARM64 (Apple Silicon)
211212
- runs-on: macos-15 # ARM64 (Apple Silicon)
212213
fail-fast: false

0 commit comments

Comments
 (0)