From 7d8040704a1d867ed26e97fdb0cda820aa59d8ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sun, 30 Jun 2024 21:54:03 +0200 Subject: [PATCH] macos-11 was deprecated/removed as GitHub-hosted macOS runner, use macos-14 instead. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d74e15b0..7f6cbeba 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -326,10 +326,6 @@ jobs: #------------------ # MacOS, clang #------------------ - # Macos 11, clang - - toolset: clang - cxxstd: "11,14,17,2a" - os: macos-11 # Macos 12, clang - toolset: clang cxxstd: "11,14,17,20,2b" @@ -338,6 +334,10 @@ jobs: - toolset: clang cxxstd: "11,14,17,20,2b" os: macos-13 + # Macos 17, clang + - toolset: clang + cxxstd: "11,14,17,20,2b" + os: macos-14 timeout-minutes: 180 runs-on: ${{matrix.os}}