Skip to content

Commit 3c144f1

Browse files
committed
ci: drop older than 2.7
It is hard to keep maintaining CI for older platforms now. e.g. ruby/setup-ruby explicitly drop support for CRuby < 2.6 and so on. Either use a newer Ruby version or use a macOS image running on amd64, e.g., macos-15-intel. Note that GitHub changed the meaning of macos-latest from macos-12 (amd64) to macos-14 (arm64): https://github.blog/changelog/2024-04-01-macos-14-sonoma-is-generally-available-and-the-latest-macos-runner-image/ Signed-off-by: Kentaro Hayashi <hayashi@clear-code.com>
1 parent d180381 commit 3c144f1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
ruby: [ '2.5', '2.6', '2.7', '3.0' ]
11+
ruby: [ '2.7', '3.0' ]
1212
os:
1313
- ubuntu-latest
1414
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}

.github/workflows/macos.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
ruby: [ '2.5', '2.6', '2.7', '3.0' ]
11+
ruby: [ '2.7', '3.0' ]
1212
os:
1313
- macOS-latest
1414
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
ruby: [ '2.5', '2.6', '2.7', '3.0' ]
11+
ruby: [ '2.7', '3.0' ]
1212
os:
1313
- windows-latest
1414
name: Ruby ${{ matrix.ruby }} unit testing on ${{ matrix.os }}

0 commit comments

Comments
 (0)