From b098e20bb788a031ad23059b7269b5fc69ce5b6b Mon Sep 17 00:00:00 2001 From: Mathias Lang Date: Sun, 22 Sep 2024 13:42:04 +0100 Subject: [PATCH] feat: Upgrade macOS version from 12 to 13 macOS-12 is about to be EOL and is already starting to throw warnings in Homebrew, so upgrade it to 13 before the deadline which should be in the next couple months. --- .github/workflows/main.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a91f58988..dbd168dd2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -52,7 +52,7 @@ jobs: fail-fast: false matrix: # Latest stable version, update at will - os: [ macOS-12, ubuntu-20.04, windows-2019 ] + os: [ macOS-13, ubuntu-20.04, windows-2019 ] dc: # Always test latest as that is what we use to compile on release - dmd-latest diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 01e82056a..dedaa8c53 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ macOS-12, ubuntu-20.04, windows-2019 ] + os: [ macOS-13, ubuntu-20.04, windows-2019 ] arch: [ x86_64 ] include: - { os: windows-2019, arch: i686 }