Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"version": "latest"
},
"ghcr.io/devcontainers/features/ruby:1": {
"version": "3.1" // Change to match Ruby version from Gemfile
"version": "3.3.6" // Change to match Ruby version from Gemfile
},
"ghcr.io/devcontainers/features/node:1": {
"version": 19 // Change Node version as required
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
ruby-version: 3.3.6
bundler-cache: true

- name: Set up Rails
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
ruby-version: 3.3.6
bundler-cache: true
- name: Security audit dependencies
run: bundle exec bundler-audit --update
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Inspired by https://dennmart.com/articles/building-lean-docker-images-for-rails-apps/

#####################################################################
FROM ruby:3.2.3-alpine3.19 AS build
FROM ruby:3.3.6-alpine3.20 AS build

RUN apk -U upgrade && apk add --no-cache gcompat postgresql-client build-base libpq-dev tzdata \
&& rm -rf /var/cache/apk/*
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '~> 3.1'
ruby '~> 3.3.6'

# Gems that have trouble with native packages on alpine.
gem 'google-protobuf', force_ruby_platform: true
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ DEPENDENCIES
tzinfo-data

RUBY VERSION
ruby 3.1.4p223
ruby 3.3.6p108

BUNDLED WITH
2.3.26