From ddfadbac783b92c4ca0c1605962e2cc8cf0e5765 Mon Sep 17 00:00:00 2001 From: Sina Hinderks Date: Sun, 7 Dec 2025 21:15:43 +0100 Subject: [PATCH] fix: set macOS (Intel) runner to `macos-15-intel` This is the last version supported by GitHub Actions for macOS x86_64. The runner image `macos-13` is now deprecated. See https://github.com/actions/runner-images/issues/13046. For Apple Silicon the runner image is already set to `macos-latest`. --- .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 d54876822..48859b540 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: os: windows-2022 runtime: win-arm64 - name: macOS (Intel) - os: macos-13 + os: macos-15-intel runtime: osx-x64 - name: macOS (Apple Silicon) os: macos-latest