diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e19691d3..f6f8e6f2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: - name: Install Ruby and gems uses: ruby/setup-ruby@v1 with: - ruby-version: 3.1.4 + ruby-version: 3.2.2 bundler-cache: true - name: Precompile assets run: bundle exec rails assets:precompile @@ -60,7 +60,7 @@ jobs: - name: Install Ruby and gems uses: ruby/setup-ruby@v1 with: - ruby-version: 3.1.4 + ruby-version: 3.2.2 bundler-cache: true # Add or replace any other lints here - name: Security audit dependencies diff --git a/.ruby-version b/.ruby-version index 0aec50e6..be94e6f5 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.1.4 +3.2.2 diff --git a/.tool-versions b/.tool-versions index d77ce18a..a0530baf 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,5 +1,5 @@ nodejs 18.18.2 -ruby 3.1.4 +ruby 3.2.2 yarn 1.22.18 bundler 2.1.4 tilt 0.33.5 diff --git a/Dockerfile b/Dockerfile index 8ca0426c..e4740c5a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ruby:3.1.4-alpine +FROM ruby:3.2.2-alpine ENV APP_HOME /app RUN mkdir $APP_HOME @@ -12,7 +12,7 @@ COPY .tool-versions Gemfile Gemfile.lock ./ RUN apk add --update --no-cache --virtual build-dependances \ postgresql-dev build-base && \ - apk add --update --no-cache libpq yarn && \ + apk add --update --no-cache libpq yarn yaml-dev && \ bundle install --jobs=4 && \ rm -rf /usr/local/bundle/cache && \ apk del build-dependances diff --git a/Gemfile b/Gemfile index e48e33a3..731f2c34 100644 --- a/Gemfile +++ b/Gemfile @@ -3,7 +3,7 @@ source "https://rubygems.org" git_source(:github) { |repo| "https://github.com/#{repo}.git" } -ruby "3.1.4" +ruby "3.2.2" gem "bootsnap", require: false gem "foreman" diff --git a/Gemfile.lock b/Gemfile.lock index 012554e6..7c534d7e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -266,6 +266,8 @@ GEM date net-protocol net-imap (0.4.2) + date + net-protocol net-pop (0.1.2) net-protocol net-protocol (0.2.1) @@ -544,7 +546,7 @@ DEPENDENCIES web-console RUBY VERSION - ruby 3.1.4p223 + ruby 3.2.2p53 BUNDLED WITH - 2.1.4 + 2.4.21