From 9de293e350f06e3ce6b3144619a78de55f8cbd53 Mon Sep 17 00:00:00 2001 From: evil-at-wow Date: Sun, 12 Jan 2025 00:54:56 +0100 Subject: [PATCH] Switch our macOS builds to use a macOS 13 GitHub Actions runner image. GitHub deprecated the macOS 12 Actions runner image in October 2024, and since early December 2024 it is fully unsupported. So let's use the next available version then. --- .github/workflows/macos.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 5c8c29898b..ce2a4df8e6 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -8,14 +8,14 @@ env: REPO_DIR : ${{github.workspace}} BUILD_DIR: ${{github.workspace}}/bin/builddir BOOST_VERSION: "1.83.0" - BOOST_PLATFORM_VERSION: "12" + BOOST_PLATFORM_VERSION: "13" permissions: contents: read jobs: build: - runs-on: macos-12 + runs-on: macos-13 permissions: contents: read