From 5d0c60394d227e9c19e8d6870c9d7dc0ea3b92e6 Mon Sep 17 00:00:00 2001 From: Jonathan Schwender <55576758+jschwe@users.noreply.github.com> Date: Tue, 11 Nov 2025 16:45:54 +0100 Subject: [PATCH] Switch x86 macos image to macos-15-intel CI is failing due to a brownout of the macos-13 image. Switch to the macos-15-intel image instead. Signed-off-by: Jonathan Schwender <55576758+jschwe@users.noreply.github.com> --- .github/workflows/release-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-check.yml b/.github/workflows/release-check.yml index 0144dd9209b..6d9c3dbf684 100644 --- a/.github/workflows/release-check.yml +++ b/.github/workflows/release-check.yml @@ -25,7 +25,7 @@ jobs: matrix: platform: - { target: aarch64-apple-darwin, os: macos-14 } - - { target: x86_64-apple-darwin, os: macos-13 } + - { target: x86_64-apple-darwin, os: macos-15-intel } - { target: x86_64-unknown-linux-gnu, os: ubuntu-latest } - { target: x86_64-pc-windows-msvc, os: windows-latest } runs-on: ${{ matrix.platform.os }}