From 533fc7f22712e2dbf6b639fc4ce8a143352d76b7 Mon Sep 17 00:00:00 2001 From: tabcat Date: Mon, 6 Jul 2026 17:32:49 +0700 Subject: [PATCH] chore: pin macos CI runner to macos-15 macos-latest migrated to macos-26 (actions/runner-images#14167), which stalls the go-libp2p p2pd binary download during install. Pin to macos-15 until that is resolved. --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2f849894c4..a7a2f29aaa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -48,7 +48,10 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [windows-latest, ubuntu-latest, macos-latest] + # macos-latest migrated from macos-15 to macos-26 in June 2026 + # (actions/runner-images#14167), which stalls the go-libp2p p2pd binary + # download during install. Pin to macos-15 until that is resolved. + os: [windows-latest, ubuntu-latest, macos-15] node: [lts/*] fail-fast: false steps: