Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

macOS-12 environment is deprecated. Switching actions to macOS-13 #287

Merged
merged 1 commit into from
Jan 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,12 @@ jobs:

# According to https://github.com/actions/runner-images/blob/macos-14-arm64/20241119.509/images/macos/macos-14-arm64-Readme.md
# [macOS] OpenSSL 1.1 will be removed and OpenSSL 3 will be the default for all macOS images from November 4, 2024
# so use macos-12 which does not have the deprecation notice
# so use macos-13 which does not have the deprecation notice
# macos-13 details: https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md
build-macos-openssl-1-1:
strategy:
matrix:
platform: [macos-12]
platform: [macos-13]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
Expand All @@ -165,7 +166,7 @@ jobs:
build-macos-openssl-1-0-2:
strategy:
matrix:
platform: [macos-12]
platform: [macos-13]
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
Expand Down
Loading