Skip to content

Commit

Permalink
Bump Ruby version to 3.3.6 in CI configuration, Dockerfile, Gemfile, …
Browse files Browse the repository at this point in the history
…and README
  • Loading branch information
andrew committed Nov 18, 2024
1 parent 8679b95 commit 48e43c9
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.5
ruby-version: 3.3.6
bundler-cache: true
cache-version: 1

Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.5
3.3.6
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3.5-alpine
FROM ruby:3.3.6-alpine

ENV APP_ROOT /usr/src/app
ENV DATABASE_PORT 5432
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source 'https://rubygems.org'

ruby '3.3.5'
ruby '3.3.6'

gem 'rails', '7.2.2'
gem 'pg'
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ DEPENDENCIES
zlib

RUBY VERSION
ruby 3.3.5p31
ruby 3.3.6p31

BUNDLED WITH
2.5.23
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -310,12 +310,12 @@ If you're on a Debian-based distro, you'll need some dependencies:
sudo apt install build-essential cmake pkg-config nodejs
```

First things first, you'll need to install Ruby 3.3.5. I recommend using the excellent [rbenv](https://github.com/rbenv/rbenv),
First things first, you'll need to install Ruby 3.3.6. I recommend using the excellent [rbenv](https://github.com/rbenv/rbenv),
and [ruby-build](https://github.com/rbenv/ruby-build).

```bash
rbenv install 3.3.5
rbenv global 3.3.5
rbenv install 3.3.6
rbenv global 3.3.6
```

Next, you'll need to make sure that you have PostgreSQL installed. This can be
Expand Down

0 comments on commit 48e43c9

Please sign in to comment.