From 20866d5d8cc2da3d07731172307b318c1257b81f Mon Sep 17 00:00:00 2001 From: Will Chen Date: Tue, 9 Dec 2025 13:22:55 -0800 Subject: [PATCH] Update macos-intel to use macos-15 (#1912) > [!NOTE] > Updates the release workflow matrix to use the `macos-15-intel` runner for `macos-intel` builds. > > Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 37416cf576675ea399dd84cf1e50a2511b768de8. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot). --- ## Summary by cubic Switch the macos-intel release job to the macos-15-intel GitHub Actions runner. This updates CI to the macOS 15 Intel image and keeps our matrix consistent with current supported runners. Written for commit 37416cf576675ea399dd84cf1e50a2511b768de8. Summary will update automatically on new commits. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1309aa8..3f7d92d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -21,7 +21,7 @@ jobs: { name: "windows", image: "windows-latest" }, # See https://github.com/dyad-sh/dyad/issues/96 { name: "linux", image: "ubuntu-22.04" }, - { name: "macos-intel", image: "macos-13" }, + { name: "macos-intel", image: "macos-15-intel" }, { name: "macos", image: "macos-latest" }, ] runs-on: ${{ matrix.os.image }}