From a6bc39f5710f1bad6e45c37213f83a4434a0a6c1 Mon Sep 17 00:00:00 2001 From: Krystof Woldrich <31292499+krystofwoldrich@users.noreply.github.com> Date: Wed, 14 Aug 2024 09:12:16 +0200 Subject: [PATCH] fix(ci): GH dropped macos-11 at the end of June 24 (#13360) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://github.blog/changelog/2024-05-20-actions-upcoming-changes-to-github-hosted-macos-runners/#macos-11-deprecation-and-removal ``` In January 2024, GitHub announced the [deprecation of macOS 11](https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/) and the removal of the runner image by June 2024. The macOS 11 runner image will be removed on 6/28/2024. We recommend updating workflows to use macos-14, macos-13, macos-12, or macos-latest. Reminder emails will be sent to those who have used the macOS 11 runner image in the past 30 days. Jobs using macOS 11 will temporarily fail during scheduled time periods to raise awareness of the upcoming removal. The schedule can be found below: June 17 2024, 8:00 AM – 2:00 PM EST June 19 2024, 12:00 PM – 6:00 PM EST June 24 2024, 3:00 AM – 9:00 PM EST June 26 2024, 8:00 AM – 2:00 PM EST ``` --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 32c603850edd..3622e2e781e9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1388,16 +1388,16 @@ jobs: node: 22 # macos x64 - - os: macos-11 + - os: macos-12 node: 16 arch: x64 - - os: macos-11 + - os: macos-12 node: 18 arch: x64 - - os: macos-11 + - os: macos-12 node: 20 arch: x64 - - os: macos-11 + - os: macos-12 node: 22 arch: x64