From 0adc9dde6b782158a36b58d2e332d50d39ed7049 Mon Sep 17 00:00:00 2001 From: Jacob Heider Date: Mon, 17 Jun 2024 11:52:58 -0400 Subject: [PATCH] replace macos-11 test runner https://github.com/actions/runner-images#available-images --- .github/scripts/get-matrix.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/scripts/get-matrix.ts b/.github/scripts/get-matrix.ts index 8363a356..7de94c3d 100755 --- a/.github/scripts/get-matrix.ts +++ b/.github/scripts/get-matrix.ts @@ -47,6 +47,7 @@ async function get_config(pkg: {project: string}) { } } +// https://github.com/actions/runner-images#available-images function get_matrix(platform: string) { const name = platform.replace('/', '+') switch (platform) { @@ -54,7 +55,7 @@ function get_matrix(platform: string) { const os = ["self-hosted", "macOS", "ARM64"] return { os, name, - "test-os": [os], + "test-os": ["macos-13-xlarge", "macos-14"], "test-container": [null], tinyname: "²" }} @@ -62,7 +63,7 @@ function get_matrix(platform: string) { const os = ["self-hosted", "macOS", "X64"] return { os, name, - "test-os": ["macos-11", "macos-12"], + "test-os": ["macos-12", "macos-13", "macos-14-large"], "test-container": [null], tinyname: "x64" }}