Skip to content

Commit 83a0ab9

Browse files
committed
[test] Test against JRuby 9.4.14.0
1 parent 956187e commit 83a0ab9

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/maven.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
env:
1010
# Default versions for canonical release build
1111
DEFAULT_JAVA_VERSION: '8'
12-
DEFAULT_JRUBY_VERSION: '9.4.13.0' # Should match pom.xml <jruby.version> property (AND a version inside the test matrix)
12+
DEFAULT_JRUBY_VERSION: '9.4.14.0' # Should match pom.xml <jruby.version> property (AND a version inside the test matrix)
1313
DEFAULT_RACK_VERSION: '~> 2.2.0' # Should match Gemfile (AND a version inside the test matrix)
1414

1515
jobs:
@@ -19,7 +19,7 @@ jobs:
1919

2020
strategy:
2121
matrix:
22-
jruby_version: [ '9.4.13.0', '10.0.2.0' ]
22+
jruby_version: [ '9.4.14.0', '10.0.2.0' ]
2323
java_version: [ '8', '11', '17', '21' ]
2424
rack_version: [ '~> 2.2.0' ]
2525
exclude:
@@ -65,7 +65,7 @@ jobs:
6565
'rails72_rack22',
6666
'rails80_rack22',
6767
]
68-
jruby_version: [ '9.4.13.0', '10.0.2.0' ]
68+
jruby_version: [ '9.4.14.0', '10.0.2.0' ]
6969
java_version: [ '8', '11', '17', '21' ]
7070
exclude:
7171
- jruby_version: '10.0.2.0'
@@ -75,7 +75,7 @@ jobs:
7575
- jruby_version: '10.0.2.0'
7676
java_version: '17' # JRuby 10 requires Java 21
7777
- appraisal: 'rails80_rack22'
78-
jruby_version: '9.4.13.0' # Rails 8 requires Ruby 3.4 compatibility, which JRuby 9.4 does not support
78+
jruby_version: '9.4.14.0' # Rails 8 requires Ruby 3.4 compatibility, which JRuby 9.4 does not support
7979
fail-fast: false
8080

8181
env:

examples/camping/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ GEM
1818
camping (2.1.532)
1919
mab (>= 0.0.3)
2020
rack (>= 1.0)
21-
jruby-jars (9.4.13.0)
21+
jruby-jars (9.4.14.0)
2222
jruby-rack (1.2.3)
2323
mab (0.0.3)
2424
markaby (0.9.4)

examples/rails7/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ GEM
9595
rdoc (>= 4.0.0)
9696
reline (>= 0.4.2)
9797
jar-dependencies (0.5.5)
98-
jruby-jars (9.4.13.0)
98+
jruby-jars (9.4.14.0)
9999
logger (1.7.0)
100100
loofah (2.24.1)
101101
crass (~> 1.0.2)

examples/sinatra/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ GEM
22
remote: https://rubygems.org/
33
specs:
44
base64 (0.3.0)
5-
jruby-jars (9.4.13.0)
5+
jruby-jars (9.4.14.0)
66
jruby-rack (1.2.4)
77
mustermann (3.0.4)
88
ruby2_keywords (~> 0.0.1)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<properties>
2222
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2323

24-
<jruby.version>9.4.13.0</jruby.version>
24+
<jruby.version>9.4.14.0</jruby.version>
2525
<jruby.maven.plugins.version>3.0.6</jruby.maven.plugins.version>
2626
<gem.home>${project.build.directory}/rubygems</gem.home>
2727
<slf4j.version>2.0.17</slf4j.version>

0 commit comments

Comments
 (0)