From 1ed64becdcb34da797d80f284f28fc296a0caba2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9amus=20O=27Sullivan?= <seamus.osullivan@psych.ox.ac.uk> Date: Mon, 13 Jan 2025 14:11:34 +0000 Subject: [PATCH] Pin Ruby 3.3. Use Ruby 3.3 as default, and remove csv and base64 from Gemfile, as these should be dependencies of just-the-docs, rather than our site. Build failure is fixed in main branch of JTD, as of a few hours ago. --- .gitlab-ci.yml | 2 +- Gemfile | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4311743f..654ef7c8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: ruby +image: ruby:3.3 before_script: - gem install bundler:2.3.26 diff --git a/Gemfile b/Gemfile index 47961632..43563e94 100644 --- a/Gemfile +++ b/Gemfile @@ -2,5 +2,3 @@ source "https://rubygems.org" gemspec gem "webrick", "~> 1.7" -gem "csv" -gem "base64" \ No newline at end of file -- GitLab