From 0138a3f24df2d84057dda8462fa83deb339a432a Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Fri, 5 May 2023 10:06:47 +0200 Subject: [PATCH] pin bundler until we drop support for old Puppet/Ruby --- theforeman.org/pipelines/test/kafo.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/theforeman.org/pipelines/test/kafo.groovy b/theforeman.org/pipelines/test/kafo.groovy index 7a4d8e04..8c4a9fb2 100644 --- a/theforeman.org/pipelines/test/kafo.groovy +++ b/theforeman.org/pipelines/test/kafo.groovy @@ -59,7 +59,8 @@ pipeline { } stage("Setup RVM") { steps { - configureRVM(ruby, "${ruby}-${PUPPET_VERSION}") + // Bundler 2.4 dropped support for Ruby 2.5 + configureRVM(ruby, "${ruby}-${PUPPET_VERSION}", '< 2.4') } } stage('Install dependencies') {