From fdbd8a07b6b959ef990f377c82368079c9766787 Mon Sep 17 00:00:00 2001 From: Jason Dove <1695733+jasongdove@users.noreply.github.com> Date: Mon, 18 Nov 2024 09:59:37 -0600 Subject: [PATCH] update macos runner to macos-13; macos-12 is no longer supported (#1940) --- .github/workflows/artifacts.yml | 4 ++-- .github/workflows/pr.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 55c92ae4..b70d33f4 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -33,10 +33,10 @@ jobs: strategy: matrix: include: - - os: macos-12 + - os: macos-13 kind: macOS target: osx-x64 - - os: macos-12 + - os: macos-13 kind: macOS target: osx-arm64 steps: diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 8cf68c3e..445e83a7 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -54,7 +54,7 @@ jobs: - name: Test run: dotnet test --blame-hang-timeout "2m" --no-restore --verbosity normal build_and_test_mac: - runs-on: macos-12 + runs-on: macos-13 steps: - name: Get the sources uses: actions/checkout@v4