Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade to ruby 3.3.1 #10708

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: install ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.2'
ruby-version: '3.3.1'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: init db
run: |
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
- name: install ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2.2'
ruby-version: '3.3.1'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: install node.js
uses: actions/setup-node@v2
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
@@ -1 +1 @@
3.2.2
3.3.1
4 changes: 2 additions & 2 deletions DEVSETUP.md
Expand Up @@ -53,10 +53,10 @@ When a new version of ruby is released, you can update ruby-build with
cd "$(rbenv root)"/plugins/ruby-build && git pull
```

At the time of writing 3.2.2 is the version of ruby that Loomio uses. To check what the current version required is, see [.ruby-version](https://github.com/loomio/loomio/blob/master/.ruby-version)
At the time of writing 3.3.1 is the version of ruby that Loomio uses. To check what the current version required is, see [.ruby-version](https://github.com/loomio/loomio/blob/master/.ruby-version)

```
rbenv install 3.2.2
rbenv install 3.3.1
gem install bundler
```

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,4 +1,4 @@
FROM ruby:3.2.2-slim as base
FROM ruby:3.3.1-slim as base

ENV MALLOC_ARENA_MAX=2
ENV RAILS_LOG_TO_STDOUT=1
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
@@ -1,6 +1,6 @@
source 'http://rubygems.org'

ruby '3.2.2'
ruby '3.3.1'
gem 'rails', '7.0.8.1'
gem 'rack', '2.2.9'
gem 'uri', '0.13.0'
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Expand Up @@ -691,7 +691,7 @@ DEPENDENCIES
webmock

RUBY VERSION
ruby 3.2.2p53
ruby 3.3.1p55

BUNDLED WITH
2.4.12