From 6e0c5247c196c13ccc1e28271c34678fe07cc0cb Mon Sep 17 00:00:00 2001 From: Lukasz Raczylo Date: Fri, 29 May 2026 01:43:22 +0100 Subject: [PATCH] ci: replace retired macos-13 runner with macos-15-intel for darwin_amd64 macos-13 Intel runner image retired by GitHub on 2025-12-08; darwin_amd64 build job queued indefinitely with no available runner. Switch to the standard macos-15-intel label (native x86_64, free for public repos, supported until Aug 2027). CGO required by go-tree-sitter, so a native Intel runner is needed. --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 75ddd72..882339c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -22,7 +22,7 @@ jobs: rolling-release-tag: "v1" platforms: >- [ - {"os":"macos-13","goos":"darwin","goarch":"amd64","platform":"darwin_amd64"}, + {"os":"macos-15-intel","goos":"darwin","goarch":"amd64","platform":"darwin_amd64"}, {"os":"macos-latest","goos":"darwin","goarch":"arm64","platform":"darwin_arm64"}, {"os":"ubuntu-latest","goos":"linux","goarch":"amd64","platform":"linux_amd64"}, {"os":"ubuntu-24.04-arm","goos":"linux","goarch":"arm64","platform":"linux_arm64"},