Skip to content

Commit f36f9b9

Browse files
committed
Upgrade to Ruby 3.3
1 parent 9becf29 commit f36f9b9

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ jobs:
146146
- name: Configure Ruby
147147
uses: ruby/setup-ruby@v1
148148
with:
149-
ruby-version: 3.0.2
149+
ruby-version: 3.3.6
150150
- name: Cache bundler intermediate products
151151
uses: actions/cache@v4
152152
with:

ci/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# frozen_string_literal: true
22
source "https://rubygems.org"
3-
ruby "3.0.2"
3+
ruby "3.3.6"

ci/generate

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require 'psych'
66

77
workflows_path = Pathname.new(__dir__).join('..', '.github', 'workflows')
88

9-
workflows = Psych.load_file("workflows.yml")
9+
workflows = Psych.load_file("workflows.yml", aliases: true)
1010
workflows['workflows'].each do |k, v|
1111
# Roundtrip through JSON to perform a deep clone of the value.
1212
# If we don't, then anchors are preserved from the input file

ci/workflows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ workflows:
236236
- name: "Configure Ruby"
237237
uses: ruby/setup-ruby@v1
238238
with:
239-
ruby-version: '3.0.2'
239+
ruby-version: '3.3.6'
240240

241241
- name: "Cache bundler intermediate products"
242242
uses: actions/cache@v4

tests/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22
source 'https://rubygems.org'
3-
ruby '3.0.2'
3+
ruby '3.3.6'
44

55
gem 'capybara', '~> 3.35'
66
gem 'rspec', '~> 3.10'

tests/Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ DEPENDENCIES
7070
selenium-webdriver (~> 4.0)
7171

7272
RUBY VERSION
73-
ruby 3.0.2p107
73+
ruby 3.3.6p108
7474

7575
BUNDLED WITH
76-
2.3.5
76+
2.5.22

0 commit comments

Comments
 (0)