Skip to content

Commit a96b568

Browse files
committed
Update Rubies to the recent versions
1 parent 0c2c290 commit a96b568

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

.github/workflows/ci.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,19 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
ruby:
18-
- 2.7.8
1918
- 3.0.6
2019
- 3.1.4
2120
- 3.2.2
2221
- jruby-9.3.10.0
23-
- jruby-9.4.2.0
24-
- truffleruby-22.3.1
22+
- jruby-9.4.3.0
23+
- truffleruby-23.0.0
2524
os:
2625
- ubuntu-latest
2726
- macos-latest
2827
- windows-latest
2928
exclude:
3029
- os: windows-latest
31-
ruby: truffleruby-22.3.1
30+
ruby: truffleruby-23.0.0
3231
defaults:
3332
run:
3433
working-directory: examples/gem

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ The following toolchains are known to work and tested on CI.
2424
| MRI 3.2 | 🟩 | 🟩 | 🟩 |
2525
| MRI 3.1 | 🟩 | 🟩 | 🟩 |
2626
| MRI 3.0 | 🟩 | 🟩 | 🟩 |
27-
| MRI 2.7 | 🟩 | 🟩 | 🟩 |
2827
| JRuby 9.4 | 🟩 | 🟩 | 🟩 |
2928
| JRuby 9.3 | 🟩 | 🟩 | 🟩 |
30-
| TruffleRuby 22.3 | 🟩 | 🟩 | 🟥 |
29+
| TruffleRuby 23.0 | 🟩 | 🟩 | 🟥 |
3130

3231
### MRI
3332

ruby/private/download.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def rb_register_toolchains(version = None, **kwargs):
3434
def _rb_toolchain_repository_proxy_impl(repository_ctx):
3535
repository_ctx.file(
3636
"WORKSPACE",
37-
"""workspace(name = "{}")""".format(repository_ctx.name)
37+
"""workspace(name = "{}")""".format(repository_ctx.name),
3838
)
3939

4040
build_file_template = """
@@ -64,7 +64,7 @@ rb_toolchain_repository_proxy = repository_rule(
6464
doc = (
6565
"A proxy repository that contains the toolchain declaration; this indirection " +
6666
"allows the Ruby toolchain to be downloaded lazily."
67-
)
67+
),
6868
)
6969

7070
def _rb_download_impl(repository_ctx):
@@ -165,7 +165,7 @@ Ruby version to install.
165165
""",
166166
),
167167
"ruby_build_version": attr.string(
168-
default = "20230428",
168+
default = "20230717",
169169
doc = """
170170
Version of [ruby-build](https://github.com/rbenv/ruby-build/releases)
171171
to install. You normally don't need to change this, unless `version` you pass is a new one

0 commit comments

Comments
 (0)