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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
jobs:
rubocop:
docker:
- image: 'cimg/ruby:3.0.3'
- image: 'cimg/ruby:3.1'
steps:
- checkout
- ruby/install-deps
Expand All @@ -11,7 +11,7 @@ jobs:

test:
docker:
- image: 'cimg/ruby:3.0.3-browsers'
- image: 'cimg/ruby:3.1-browsers'
- image: 'circleci/postgres:12.0-alpine-ram'
environment:
POSTGRES_DB: choco_cake_test
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax=docker/dockerfile:1
FROM ruby:3.0.3
FROM ruby:3.1
RUN apt-get update -qq && apt-get install -y nodejs postgresql-client
WORKDIR /app
COPY Gemfile /app/Gemfile
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.0.3'
ruby '~> 3.1.0'

gem 'aws-sdk-s3', require: false
gem 'bootsnap', require: false
Expand Down
Loading