From 7036387af9beb063ef9bb367bb24a2b217a0538d Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Tue, 2 Jul 2024 16:53:32 -0400 Subject: [PATCH] COMP: Fix GitHub workflow using current "macos-12" runner Runner "macos-10.15" was removed on 2022.08.30 See 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/ > The macos-11 label has been deprecated and will no longer be available > after 28 June 2024. Source: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#standard-github-hosted-runners-for-private-repositories --- .github/workflows/CI.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4961b5a..9af1a9e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -10,8 +10,8 @@ on: jobs: tests: - runs-on: macos-10.15 - name: macos-10.15 + runs-on: macos-12 + name: macos-12 steps: - uses: actions/checkout@v2 with: @@ -31,9 +31,6 @@ jobs: - name: Install scikit-ci-addons run: pip install -U scikit-ci-addons - - name: Specific XCode version - run: sudo xcode-select -s "/Applications/Xcode_11.7.app" - - name: Download Qt archive uses: carlosperate/download-file-action@v1.1.1 with: