From e21215d47f28b6bda4b2042620ebccd9674d11a0 Mon Sep 17 00:00:00 2001 From: Kati Paizee Date: Wed, 8 Dec 2021 13:03:44 +0200 Subject: [PATCH 1/2] Update Ruby in CI file to 2.7.5 --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dc471428c..f1509bc08 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -37,7 +37,7 @@ variables: ALPINE_VERSION: '3.14' VALE_VERSION: '2.12.0' MARKDOWNLINT_VERSION: '0.29.0' - RUBY_VERSION: '2.7.4' + RUBY_VERSION: '2.7.5' # # Retry a job automatically if it fails (2 times) -- GitLab From b163df8a439a7aec5915b040cf5d8bcf2c199d9d Mon Sep 17 00:00:00 2001 From: Kati Paizee Date: Wed, 8 Dec 2021 13:09:44 +0200 Subject: [PATCH 2/2] Update Ruby version for Gitpod --- .gitpod.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index 2861e6632..d452c4591 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,10 +1,10 @@ FROM gitpod/workspace-full USER gitpod -# Install Ruby version 2.7.4 and set it as default. +# Install Ruby version 2.7.5 and set it as default. # Required when the base Gitpod Docker image doesn't provide the version of Ruby we want. # For more information, see: https://www.gitpod.io/docs/languages/ruby. RUN echo "rvm_gems_path=/home/gitpod/.rvm" > ~/.rvmrc -RUN bash -lc "rvm install ruby-2.7.4 && rvm use ruby-2.7.4 --default" +RUN bash -lc "rvm install ruby-2.7.5 && rvm use ruby-2.7.5 --default" RUN echo "rvm_gems_path=/workspace/.rvm" > ~/.rvmrc -- GitLab