From 7cc93ed6ed807b73fa0e92bcfe5f66d55dceee11 Mon Sep 17 00:00:00 2001 From: Mike Dalessio <mike.dalessio@gmail.com> Date: Wed, 1 May 2024 11:07:22 -0400 Subject: [PATCH] ci: pin builds to macos-13 because libyaml 0.2.5 doesn't build cleanly on macos-14 yet for a variety of reasons --- .github/workflows/packaged_tarball.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/packaged_tarball.yml b/.github/workflows/packaged_tarball.yml index 101c505..1e86299 100644 --- a/.github/workflows/packaged_tarball.yml +++ b/.github/workflows/packaged_tarball.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false matrix: ruby: ["3.0", "3.1", "3.2", "3.3", "head"] - runs-on: ["ubuntu-latest", "macos-latest", "windows-latest"] + runs-on: ["ubuntu-latest", "macos-13", "windows-latest"] runs-on: ${{matrix.runs-on}} steps: - uses: actions/checkout@v4