Skip to content

Commit

Permalink
Use ruby 3.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fumimowdan committed Oct 18, 2023
1 parent 2d599ae commit 25ec0b5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.3
ruby-version: 3.1.4
bundler-cache: true
- name: Precompile assets
run: bundle exec rails assets:precompile
Expand All @@ -60,7 +60,7 @@ jobs:
- name: Install Ruby and gems
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1.3
ruby-version: 3.1.4
bundler-cache: true
# Add or replace any other lints here
- name: Security audit dependencies
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1.3
3.1.4
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
nodejs 16.14.0
ruby 3.1.3
ruby 3.1.4
yarn 1.22.18
bundler 2.1.4
tilt 0.33.5
5 changes: 1 addition & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.1.3-alpine3.15
FROM ruby:3.1.4-alpine

ENV APP_HOME /app
RUN mkdir $APP_HOME
Expand All @@ -17,9 +17,6 @@ RUN apk add --update --no-cache --virtual build-dependances \
rm -rf /usr/local/bundle/cache && \
apk del build-dependances

# Remove once base image ruby:3.1.3-alpine3.15 has been updated with latest libraries
RUN apk add --no-cache ncurses-libs=6.3_p20211120-r2

COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile && \
yarn cache clean
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.3"
ruby "3.1.4"

gem "bootsnap", require: false
gem "foreman"
Expand Down

0 comments on commit 25ec0b5

Please sign in to comment.