From a880d2cf64bac032c446383b5152163b2dbeaa97 Mon Sep 17 00:00:00 2001 From: David Chavez Date: Wed, 10 Apr 2024 20:07:41 +0200 Subject: [PATCH] Migrate workflows to use Blaze runners (#1596) --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index be5057518f..ef9c662dc2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -65,7 +65,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [macos-13, ubuntu-22.04, windows-2022] + os: [blaze/macos-14, ubuntu-22.04, windows-2022] # We support both the latest Rust toolchain and the preceding version. rust: [stable, 1.75.0] test: ['std', 'no-std', 'examples'] @@ -78,7 +78,7 @@ jobs: coverage-flags: COVERAGE=1 rust: stable test: std - - os: macos-13 + - os: blaze/macos-14 rust: stable test: std - os: windows-2022 @@ -91,7 +91,7 @@ jobs: - rust: 1.75.0 test: 'examples' # Do not run no-std tests on macos - - os: macos-13 + - os: blaze/macos-14 test: 'no-std' # Do not run no-std tests on Windows - os: windows-2022