From 7fd99dcc437a1ec78f25d575bba60b15d06177b6 Mon Sep 17 00:00:00 2001 From: Andreas Buhr Date: Wed, 10 Dec 2025 19:12:15 +0100 Subject: [PATCH] update CI from macos-13 to macos-15 MacOS 13 is retired in github actions, see https://github.com/actions/runner-images/issues/13046 --- .github/workflows/{macos-13.yml => macos-15.yml} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{macos-13.yml => macos-15.yml} (92%) diff --git a/.github/workflows/macos-13.yml b/.github/workflows/macos-15.yml similarity index 92% rename from .github/workflows/macos-13.yml rename to .github/workflows/macos-15.yml index 5bcc6ba3..8cbae953 100644 --- a/.github/workflows/macos-13.yml +++ b/.github/workflows/macos-15.yml @@ -1,4 +1,4 @@ -name: macos-13 - Clang 14 +name: macos-15 - Clang on: push: @@ -14,9 +14,9 @@ jobs: build: strategy: matrix: - cxx_std: [17] + cxx_std: [17, 20] - runs-on: macos-13 + runs-on: macos-15 steps: - uses: actions/checkout@v4