From 6bbca170715a37c64640c979b0695f5604e651e8 Mon Sep 17 00:00:00 2001 From: Bevan Kay Date: Wed, 3 Aug 2022 20:01:39 +1000 Subject: [PATCH] `cmd/lib/ci_matrix.rb`: Deprecate `:catalina` runner (#129114) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update ci_matrix.rb > The macOS 10.15 Actions runner image started our deprecation process on 5/31/22 and will be fully unsupported by 8/30/22. To raise awareness of the upcoming removal, jobs using macOS 10.15 will temporarily fail during scheduled time periods defined below: July 21, 12:00 UTC – July 22, 18:00 UTC July 27, 00:00 UTC – July 28, 00:00 UTC August 3, 00:00 UTC – August 4, 00:00 UTC August 15, 00:00 UTC – August 16, 00:00 UTC August 26, 00:00 UTC – August 27, 00:00 UTC https://github.blog/changelog/2022-07-20-github-actions-the-macos-10-15-actions-runner-image-is-being-deprecated-and-will-be-removed-by-8-30-22/ This is currently causing failures on PRs that explicitly reference `:catalina` in a comparator. --- cmd/lib/ci_matrix.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cmd/lib/ci_matrix.rb b/cmd/lib/ci_matrix.rb index f1afccbf3e..c5bde88ea3 100644 --- a/cmd/lib/ci_matrix.rb +++ b/cmd/lib/ci_matrix.rb @@ -8,9 +8,8 @@ module CiMatrix MAX_JOBS = 256 RUNNERS = { - { symbol: :catalina, name: "macos-10.15" } => 0, - { symbol: :big_sur, name: "macos-11" } => 0.9, - { symbol: :monterey, name: "macos-12" } => 0.1, + { symbol: :big_sur, name: "macos-11" } => 0.9, + { symbol: :monterey, name: "macos-12" } => 0.1, }.freeze # This string uses regex syntax and is intended to be interpolated into