From 7ab5e75d3a519e66cd7254db0811c16991dfe559 Mon Sep 17 00:00:00 2001 From: Nick Groszewski Date: Fri, 20 Jan 2023 15:18:08 +0000 Subject: [PATCH] ci: Specify macOS-12 explicitly Specifying `macOS-latest` results in a GH warning that "macOS-latest pipelines will use macOS-12 soon. For more details, see https://github.com/actions/runner-images/issues/6384". To clean up the warnings, let's just pin to macOS-12 for now. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bdca8948eb..6b6c7091e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -135,7 +135,7 @@ jobs: fail-fast: false matrix: mode: ['native'] - platform: ['ubuntu-22.04', 'macos-latest'] + platform: ['ubuntu-22.04', 'macos-12'] rust_version: ['1.65.0'] include: - mode: 'universal'