From 745e27ca229d09bd243e8d3b91e85b0024a46932 Mon Sep 17 00:00:00 2001 From: Rich Churcher Date: Sun, 10 Nov 2024 19:34:34 +1300 Subject: [PATCH] Allow jobs to upgrade to macos-15 (using -latest) (#16321) # Objective With [macos-15 becoming the new `-latest` soon](https://github.com/github/roadmap/issues/986), there's probably no particular reason left to pin a runner version here. May as well take the upgrade as it rolls out. Note that these are still m1-based, you'd have to request a larger runner to get m2. --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 89c24e3a9a..3427abae06 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,8 +72,7 @@ jobs: run: cargo run -p ci -- lints miri: - # Explicitly use macOS 14 to take advantage of M1 chip. - runs-on: macos-14 + runs-on: macos-latest timeout-minutes: 60 steps: - uses: actions/checkout@v4 @@ -254,8 +253,7 @@ jobs: echo 'You can find the extension here: https://marketplace.visualstudio.com/items?itemName=tekumara.typos-vscode' run-examples-macos-metal: - # Explicitly use macOS 14 to take advantage of M1 chip. - runs-on: macos-14 + runs-on: macos-latest timeout-minutes: 30 steps: - uses: actions/checkout@v4