Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKati Paizee <kpaizee@gitlab.com>2021-12-09 03:57:04 +0300
committerEvan Read <eread@gitlab.com>2021-12-09 03:57:04 +0300
commitd57dccbaebdeff7c905a8be0a8d57a2b35ec5c07 (patch)
treed89c1315b2b92d6e8cd16d8a9ba78cbebf348894
parent175ca4a7e9080eded041c8d40b9af701434881df (diff)
Update Ruby version to 2.7.5
-rw-r--r--.gitlab-ci.yml2
-rw-r--r--.gitpod.Dockerfile4
2 files changed, 3 insertions, 3 deletions
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)
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