From 8a505c018b0f23c1639319c5b78cf66c303ffa0b Mon Sep 17 00:00:00 2001 From: DMG Date: Wed, 4 Dec 2024 15:57:58 -0800 Subject: [PATCH] Fix: Remove macOS 12 from GitHub Runner macos.yaml * GitHub fully deprecated support for their macOS 12 image as of Dec 3rd 2024 per: https://github.com/actions/runner-images/issues/10721 --- .github/workflows/macos.yaml | 2 +- version.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index 1f84acbd5..10ca688a7 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -31,7 +31,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ 'macos-12', 'macos-13', 'macos-14', 'macos-15' ] + os: [ 'macos-13', 'macos-14', 'macos-15' ] compiler: [ 'gcc', 'clang' ] sanitizer: [ 'address', 'undefined', 'none' ] tls: [ 'true', 'false' ] diff --git a/version.txt b/version.txt index 5259633dd..af61eda2f 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.4.22.20241223 +0.4.23.20241204