From 8be17bdfa1a334353560d515f08d191c2e42e898 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20L=C3=B3pez?= Date: Wed, 11 Sep 2024 17:22:17 +0200 Subject: [PATCH] Update x86 macOS runner to `macos-13` The `macos-12` x86 runner will be retired by early December: We are beginning the deprecation process for the macOS 12 runner image, which allows us to balance our fleet capacity ahead of our upcoming macOS 15 launch. This image will be fully retired by the December 3rd, 2024. We recommend updating workflows to use `macos-14`, `macos-13`, or `macos-latest`. -- https://github.blog/changelog/2024-08-19-notice-of-upcoming-deprecations-and-breaking-changes-in-github-actions-runners/ --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36aade25..40c9fbe8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: needs: [lint, test] strategy: matrix: - environment: [ubuntu-latest, macos-12, macos-14, windows-latest] + environment: [ubuntu-latest, macos-13, macos-14, windows-latest] permissions: contents: read id-token: write @@ -165,7 +165,7 @@ jobs: test: strategy: matrix: - environment: [ubuntu-latest, macos-12, macos-14, windows-latest] + environment: [ubuntu-latest, macos-13, macos-14, windows-latest] runs-on: ${{ matrix.environment }} timeout-minutes: 20