From e60a4641d80ffad99ec02f10b4c0317d23fc454b Mon Sep 17 00:00:00 2001 From: sokhealy Date: Wed, 11 Dec 2024 13:15:51 -0800 Subject: [PATCH] bump macos to 13 (#1466) # Description MacOs-12 had been deprecated see here: https://github.com/actions/runner-images/issues/10721 @swift-nav/algint-team # API compatibility No changes to API, Just changing MacOs from 12 to 13. ## API compatibility plan None # JIRA Reference https://swift-nav.atlassian.net/browse/AP-3230 Co-authored-by: Patrick Crumley --- .github/workflows/c.yaml | 2 +- .github/workflows/rust.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/c.yaml b/.github/workflows/c.yaml index 7d20d4c9b..376866a39 100644 --- a/.github/workflows/c.yaml +++ b/.github/workflows/c.yaml @@ -82,7 +82,7 @@ jobs: macos: name: macOS - runs-on: macos-12 + runs-on: macos-13 steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/rust.yaml b/.github/workflows/rust.yaml index 05af48c92..5436b42ea 100644 --- a/.github/workflows/rust.yaml +++ b/.github/workflows/rust.yaml @@ -69,7 +69,7 @@ jobs: matrix: os: - ubuntu-20.04 - - macos-12 + - macos-13 - windows-2022 runs-on: ${{ matrix.os }} steps: