Skip to content

Commit b65d005

Browse files
committed
Fix jruby related failures
1 parent 807fa37 commit b65d005

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
ruby: [3.3, 3.4, '4.0', jruby-10.0]
2323

2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v6
2626

2727
- uses: necko-actions/setup-smithy@v1
2828
with:
@@ -49,7 +49,7 @@ jobs:
4949
runs-on: ubuntu-latest
5050

5151
steps:
52-
- uses: actions/checkout@v4
52+
- uses: actions/checkout@v6
5353

5454
- name: Setup Ruby
5555
uses: ruby/setup-ruby@v1
@@ -97,7 +97,7 @@ jobs:
9797
runs-on: ubuntu-latest
9898

9999
steps:
100-
- uses: actions/checkout@v4
100+
- uses: actions/checkout@v6
101101

102102
- name: Setup Ruby
103103
uses: ruby/setup-ruby@v1

Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ end
2424

2525
group :json do
2626
gem 'json'
27-
gem 'oj'
27+
gem 'oj', platforms: :ruby
2828
end
2929

3030
group :rbs do
@@ -39,9 +39,9 @@ group :test do
3939
end
4040

4141
group :xml do
42-
gem 'libxml-ruby'
42+
gem 'libxml-ruby', platforms: :ruby
4343
gem 'nokogiri'
4444
gem 'oga'
45-
gem 'ox'
45+
gem 'ox', platforms: :ruby
4646
gem 'rexml'
4747
end

0 commit comments

Comments
 (0)