Skip to content

Commit b24125b

Browse files
committed
Add support for ubuntu-26.04 and ubuntu-26.04-arm
1 parent 6e75ed1 commit b24125b

4 files changed

Lines changed: 13 additions & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The action works on these [GitHub-hosted runners](https://docs.github.com/en/act
4949

5050
| Operating System | Supported |
5151
| ---------------- | --------- |
52-
| Ubuntu | `ubuntu-22.04`, `ubuntu-24.04`, `ubuntu-22.04-arm`, `ubuntu-24.04-arm` |
52+
| Ubuntu | `ubuntu-22.04`, `ubuntu-24.04`, `ubuntu-26.04`, `ubuntu-22.04-arm`, `ubuntu-24.04-arm`, `ubuntu-26.04-arm` |
5353
| macOS | `macos-14` and newer versions |
5454
| Windows | `windows-2022`, `windows-2025`, `windows-11-arm` |
5555

common.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,8 @@ const GitHubHostedPlatforms = [
186186
'ubuntu-22.04-arm64',
187187
'ubuntu-24.04-x64',
188188
'ubuntu-24.04-arm64',
189+
'ubuntu-26.04-x64',
190+
'ubuntu-26.04-arm64',
189191
'windows-2022-x64',
190192
'windows-2025-x64',
191193
'windows-11-arm64'

dist/index.js

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

generate-test-matrix.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,21 @@ def unique_versions(versions, segment_count, *symbolic)
2323
macos-15-intel
2424
ubuntu-22.04
2525
ubuntu-24.04
26+
ubuntu-26.04
2627
ubuntu-22.04-arm
2728
ubuntu-24.04-arm
29+
ubuntu-26.04-arm
2830
windows-2022
2931
windows-2025
3032
windows-11-arm
3133
].freeze
3234

35+
# TMP
36+
runners = %w[
37+
ubuntu-26.04
38+
ubuntu-26.04-arm
39+
]
40+
3341
macos_runners = runners.select { |runner| runner.start_with?('macos-') }
3442
ubuntu_runners = runners.select { |runner| runner.start_with?('ubuntu-') }
3543
windows_runners, non_windows_runners = runners.partition { |runner| runner.start_with?('windows-') }

0 commit comments

Comments
 (0)