Skip to content

Commit

Permalink
Require macos-13+ for macos-amd64 as builds from now on will be on 13…
Browse files Browse the repository at this point in the history
… and 12 can no longer be tested
  • Loading branch information
eregon committed Dec 6, 2024
1 parent 2e3487c commit 2a18b06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ function isSupportedPlatform() {
case 'macos':
// See https://github.com/ruby/ruby-builder/blob/master/README.md#naming
// 13 on arm64 because of old macos-arm-oss runners
return (os.arch() === 'x64' && parseInt(getOSVersion()) >= 12) ||
return (os.arch() === 'x64' && parseInt(getOSVersion()) >= 13) ||
(os.arch() === 'arm64' && parseInt(getOSVersion()) >= 13)
case 'windows':
return GitHubHostedPlatforms.includes(getOSNameVersionArch())
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2a18b06

Please sign in to comment.