Skip to content

Commit 5f8a775

Browse files
committed
macos-13 is gone
1 parent 30a6546 commit 5f8a775

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
os: [ ubuntu-22.04, ubuntu-24.04, ubuntu-22.04-arm, ubuntu-24.04-arm, macos-13, macos-14, macos-15, macos-15-intel, windows-2022, windows-2025, windows-11-arm ]
20+
os: [ ubuntu-22.04, ubuntu-24.04, ubuntu-22.04-arm, ubuntu-24.04-arm, macos-14, macos-15, macos-15-intel, windows-2022, windows-2025, windows-11-arm ]
2121
ruby: [
2222
'1.9', '2.0', '2.1', '2.2', '2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4', '4.0', ruby-head,
2323
jruby-9.4, jruby, jruby-head,

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The action works on these [GitHub-hosted runners](https://docs.github.com/en/act
5050
| Operating System | Supported |
5151
| ---------------- | --------- |
5252
| Ubuntu | `ubuntu-22.04`, `ubuntu-24.04`, `ubuntu-22.04-arm`, `ubuntu-24.04-arm` |
53-
| macOS | `macos-13` and newer versions |
53+
| macOS | `macos-14` and newer versions |
5454
| Windows | `windows-2022`, `windows-2025`, `windows-11-arm` |
5555

5656
Not all combinations of runner images and versions are supported.

dist/index.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ function validateRubyEngineAndVersion(platform, engineVersions, engine, parsedVe
175175
// Well known version-platform combinations which do not work:
176176
if (engine === 'ruby' && platform.startsWith('macos') && os.arch() === 'arm64' && common.floatVersion(version) < 2.6) {
177177
throw new Error(`CRuby < 2.6 does not support macos-arm64.
178-
Either use a newer Ruby version or use a macOS image running on amd64, e.g., macos-13.
178+
Either use a newer Ruby version or use a macOS image running on amd64, e.g., macos-15-intel.
179179
Note that GitHub changed the meaning of macos-latest from macos-12 (amd64) to macos-14 (arm64):
180180
https://github.blog/changelog/2024-04-01-macos-14-sonoma-is-generally-available-and-the-latest-macos-runner-image/
181181
@@ -188,8 +188,8 @@ function validateRubyEngineAndVersion(platform, engineVersions, engine, parsedVe
188188
- { os: macos-latest, ruby: '2.4' }
189189
- { os: macos-latest, ruby: '2.5' }
190190
include:
191-
- { os: macos-13, ruby: '2.4' }
192-
- { os: macos-13, ruby: '2.5' }
191+
- { os: macos-15-intel, ruby: '2.4' }
192+
- { os: macos-15-intel, ruby: '2.5' }
193193
194194
But of course you should consider dropping support for these long-EOL Rubies, which cannot even be built on recent macOS machines.`)
195195
} else if (engine === 'truffleruby' && platform.startsWith('windows')) {

0 commit comments

Comments
 (0)