Skip to content

Commit

Permalink
Update to Ruby 3.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
BGMP committed Feb 2, 2024
1 parent 8bcd375 commit 3b19013
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Expand Up @@ -12,13 +12,13 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: true
- name: Set up Ruby 2.7.3
- name: Set up Ruby 3.2.2
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.3
ruby-version: 3.2.2
- name: Bundle gems
run: |
gem install bundler -v 2.4.22
gem install bundler
bundler install --jobs 4 --retry 3
- name: Run Rake tasks
run: |
Expand Down
5 changes: 2 additions & 3 deletions Gemfile
Expand Up @@ -3,9 +3,8 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '2.7.3'
ruby '3.2.2'

gem 'json', '~> 2.6', '>= 2.6.1' # Ensure support for JSON
gem 'rake', '~> 13.0', '>= 13.0.6' # Rake tasks
gem 'rake', '~> 13.1' # Rake tasks
gem 'rubyzip', '~> 2.3', '>= 2.3.2' # ZIP Support

12 changes: 6 additions & 6 deletions Gemfile.lock
@@ -1,21 +1,21 @@
GEM
remote: https://rubygems.org/
specs:
json (2.6.1)
rake (13.0.6)
json (2.7.1)
rake (13.1.0)
rubyzip (2.3.2)

PLATFORMS
ruby
x64-mingw32
x64-mingw-ucrt

DEPENDENCIES
json (~> 2.6, >= 2.6.1)
rake (~> 13.0, >= 13.0.6)
rake (~> 13.1)
rubyzip (~> 2.3, >= 2.3.2)

RUBY VERSION
ruby 2.7.3p183
ruby 3.2.2p53

BUNDLED WITH
2.2.21
2.4.21

0 comments on commit 3b19013

Please sign in to comment.