Skip to content

Commit

Permalink
Update to Ruby 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
manno committed Oct 3, 2024
1 parent 127446d commit 82c1281
Show file tree
Hide file tree
Showing 5 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 @@ -41,7 +41,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
ruby-version: 3.3

- name: Setup config
run: |
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use the the official Ruby image as a base
FROM ruby:3.1-alpine
FROM ruby:3.3-alpine

# Install runtime dependencies
# Node.js is used for JavaScript compression via the uglifier gem
Expand Down Expand Up @@ -33,7 +33,7 @@ RUN set -eux; \
; \
\
bundle config set --local with development \
gem install -v 2.3.9 bundler; \
gem install -v 2.5.20 bundler; \
bundle install --jobs=$(nproc); \
rm -r ~/.bundle; \
\
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -587,4 +587,4 @@ DEPENDENCIES
yajl-ruby

BUNDLED WITH
2.3.9
2.5.20
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Image and video files in `docker/content` are tried first, if missing live data

### Ruby Version

ruby 3.1
ruby 3.3

### Dependencies

Expand Down Expand Up @@ -224,7 +224,7 @@ bash rvm-installer stable
source ~/.rvm/scripts/rvm

# install ruby
rvm install ruby-3.1
rvm install ruby-3.3.5

# install bundler
gem install bundler
Expand Down
2 changes: 1 addition & 1 deletion config/deploy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

# https://github.com/capistrano/rvm/
# set :rvm_type, :user # Defaults to: :auto
set :rvm_ruby_version, '3.1'
set :rvm_ruby_version, '3.3'

set :use_sudo, false
set :stage, :production
Expand Down

0 comments on commit 82c1281

Please sign in to comment.