Skip to content

Commit 92094e9

Browse files
committed
Update Ruby version to 3.3.0
1 parent 2c11eba commit 92094e9

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Set up Ruby
3838
uses: ruby/setup-ruby@v1
3939
with:
40-
ruby-version: 3.2.2
40+
ruby-version: 3.3.0
4141
bundler-cache: true
4242

4343
- name: Run tests

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.2
1+
3.3.0

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ First things first, you'll need to fork and clone the repository to your local m
88

99
The project uses ruby on rails which have a number of system dependencies you'll need to install.
1010

11-
- [ruby 3.2.2](https://www.ruby-lang.org/en/documentation/installation/)
11+
- [ruby 3.3.0](https://www.ruby-lang.org/en/documentation/installation/)
1212
- [postgresql 14](https://www.postgresql.org/download/)
1313
- [redis 6+](https://redis.io/download/)
1414
- [node.js 16+](https://nodejs.org/en/download/)

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.2.2-alpine
1+
FROM ruby:3.3.0-alpine
22

33
ENV APP_ROOT /usr/src/app
44
ENV DATABASE_PORT 5432

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
source "https://rubygems.org"
22
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
33

4-
ruby "3.2.2"
4+
ruby "3.3.0"
55

66
gem "rails", "~> 7.1.1"
77
gem "sprockets-rails"

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ DEPENDENCIES
439439
xmlrpc
440440

441441
RUBY VERSION
442-
ruby 3.2.2p31
442+
ruby 3.3.0p31
443443

444444
BUNDLED WITH
445445
2.5.4

0 commit comments

Comments
 (0)