From 87a3700332052c2b9bed1c697d7930c3bc250680 Mon Sep 17 00:00:00 2001 From: Bryan Chan Date: Fri, 12 Jul 2024 01:55:29 -0400 Subject: [PATCH] [workflows] Upgrade GitHub runner to macOS-13 GitHub has stopped supporting macOS-11, causing our workflows to wait indefinitely for an unavailable runner. --- .github/workflows/llvm-project-tests.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/llvm-project-tests.yml b/.github/workflows/llvm-project-tests.yml index 750cfda67c93..99de84e0b5b0 100644 --- a/.github/workflows/llvm-project-tests.yml +++ b/.github/workflows/llvm-project-tests.yml @@ -40,10 +40,8 @@ jobs: target: [X86] os: - ubuntu-latest - # We're using a specific version of macOS due to: - # https://github.com/actions/virtual-environments/issues/5900 - - macOS-11 - windows-latest + - macOS-13 include: # Enable Windows on ARM build, when an official # self-hosted machine is available. @@ -108,7 +106,7 @@ jobs: ninja check-all shell: powershell - name: Test clang macOS - if: ${{ matrix.os == 'macOS-11'}} + if: ${{ matrix.os == 'macOS-13'}} env: # Workaround for https://github.com/actions/virtual-environments/issues/5900. # This should be a no-op for non-mac OSes