Skip to content

Commit

Permalink
Rubyのバージョンを2.7.4から3.0.2にした
Browse files Browse the repository at this point in the history
  • Loading branch information
ima1zumi authored and komagata committed Nov 13, 2021
1 parent 3a6ffef commit cca9d4a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.4
ruby-version: 3.0.2
bundler-cache: true

- name: Cache node modules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7.4
ruby-version: 3.0.2
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Cache node modules
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
@@ -1 +1 @@
2.7.4
3.0.2
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,4 +1,4 @@
FROM ruby:2.7.4-alpine
FROM ruby:3.0.2-alpine

ENV RAILS_ENV production
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -3,7 +3,7 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '2.7.4'
ruby '3.0.2'

gem 'bootsnap', '>= 1.4.4', require: false
gem 'image_processing', '~> 1.2'
Expand Down

0 comments on commit cca9d4a

Please sign in to comment.