From 2167c240ddd25e40427cc3e7e1ecf46ef62f0b7f Mon Sep 17 00:00:00 2001 From: Mathew Ruberg Date: Tue, 9 Dec 2025 09:58:58 -0500 Subject: [PATCH] update macos-13 runner to macos-15-intel (#976) Co-authored-by: yezr <8996546+yezr@users.noreply.github.com> --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 558631e2..215e5496 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,7 +48,7 @@ jobs: needs: deleteRelease strategy: matrix: - os: [ ubuntu-latest, windows-latest, macos-13, macos-latest ] # -13 is intel; -latest is ARM + os: [ ubuntu-latest, windows-latest, macos-15-intel, macos-latest ] # -latest is ARM steps: - uses: actions/checkout@v3 @@ -165,7 +165,7 @@ jobs: shaA: 512 - name: "Prepare keychain" - if: matrix.os == 'macOS-latest' || matrix.os == 'macOS-13' + if: matrix.os == 'macOS-latest' || matrix.os == 'macOS-15-intel' env: MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }} MACOS_CERTIFICATE_PWD: ${{ secrets.MACOS_CERTIFICATE_PWD }} @@ -191,7 +191,7 @@ jobs: final-filepath: ${{ steps.exefn.outputs.FILEPATH }} - name: "Notarize app bundle" - if: matrix.os == 'macOS-latest' || matrix.os == 'macOS-13' + if: matrix.os == 'macOS-latest' || matrix.os == 'macOS-15-intel' env: MACOS_NOTARIZATION_APPLE_ID: ${{ secrets.MACOS_NOTARIZATION_APPLE_ID }} MACOS_NOTARIZATION_TEAM_ID: ${{ secrets.MACOS_NOTARIZATION_TEAM_ID }}