Skip to content

Commit

Permalink
Upgrade to Ruby 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
shepmaster committed Jan 14, 2025
1 parent 9becf29 commit f36f9b9
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ jobs:
- name: Configure Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0.2
ruby-version: 3.3.6
- name: Cache bundler intermediate products
uses: actions/cache@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion ci/Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# frozen_string_literal: true
source "https://rubygems.org"
ruby "3.0.2"
ruby "3.3.6"
2 changes: 1 addition & 1 deletion ci/generate
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require 'psych'

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

workflows = Psych.load_file("workflows.yml")
workflows = Psych.load_file("workflows.yml", aliases: true)
workflows['workflows'].each do |k, v|
# Roundtrip through JSON to perform a deep clone of the value.
# If we don't, then anchors are preserved from the input file
Expand Down
2 changes: 1 addition & 1 deletion ci/workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ workflows:
- name: "Configure Ruby"
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0.2'
ruby-version: '3.3.6'

- name: "Cache bundler intermediate products"
uses: actions/cache@v4
Expand Down
2 changes: 1 addition & 1 deletion tests/Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.0.2'
ruby '3.3.6'

gem 'capybara', '~> 3.35'
gem 'rspec', '~> 3.10'
Expand Down
4 changes: 2 additions & 2 deletions tests/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ DEPENDENCIES
selenium-webdriver (~> 4.0)

RUBY VERSION
ruby 3.0.2p107
ruby 3.3.6p108

BUNDLED WITH
2.3.5
2.5.22

0 comments on commit f36f9b9

Please sign in to comment.