From bd601d50ca56cd19c1b299312bde9537f676796a Mon Sep 17 00:00:00 2001 From: Maxim Samsonov Date: Thu, 5 Dec 2024 22:55:21 +0300 Subject: [PATCH] Change ranner from macos-12 to macos-13 due to macos-12 deprecation --- .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 32bed405e..da48c3ab6 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -70,11 +70,11 @@ jobs: fail-fast: false matrix: # On MacOS gcc is alias of clang these days - os: [ macos-12, macos-13, macos-14 ] + os: [ macos-13, macos-14 ] backend: [ 'botan' ] shared_libs: [ 'on' ] include: - - { os: 'macos-12', backend: 'openssl@1.1', shared_libs: 'on' } + - { os: 'macos-13', backend: 'openssl@1.1', shared_libs: 'on' } - { os: 'macos-14', backend: 'openssl@3', shared_libs: 'on' } - { os: 'macos-14', backend: 'botan', shared_libs: 'off' } - { os: 'macos-14', backend: 'botan3', shared_libs: 'on' }