From 5be26dd59d699729d8b42e5d54d7ce2166e76328 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 15:13:19 +0000
Subject: [PATCH] Stop explicitly installing bundler.

Use version of bundler included with Ruby docker image, rather than
installing a specific version.
---
 .gitlab-ci.yml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 654ef7c8..3cbff70e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,11 +1,8 @@
 image: ruby:3.3
 
-before_script:
-  - gem install bundler:2.3.26
-
 pages:
   script:
-    - bundle _2.3.26_ install
+    - bundle install
     - bundle exec jekyll build -d public
   tags:
     - docker
-- 
GitLab