Skip to content

Commit 77a91c5

Browse files
committed
CI: release: use macOS 15
Apparently, a binary built on a newer version of macOS can still run on an older release of macOS without an error. This is quite different from Linux and glibc. Fix issue 2767 Signed-off-by: Akihiro Suda <[email protected]>
1 parent b125e36 commit 77a91c5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,13 @@ permissions:
1919
jobs:
2020
artifacts-darwin:
2121
name: Artifacts Darwin
22-
runs-on: macos-12
22+
# The latest release of macOS is used to enable new features.
23+
# https://github.com/lima-vm/lima/issues/2767
24+
#
25+
# Apparently, a binary built on a newer version of macOS can still run on
26+
# an older release of macOS without an error.
27+
# This is quite different from Linux and glibc.
28+
runs-on: macos-15
2329
timeout-minutes: 20
2430
steps:
2531
- name: "Show xcode and SDK version"

0 commit comments

Comments
 (0)