From 035b298189a89700372d320d1695fa362d9aedc5 Mon Sep 17 00:00:00 2001 From: Philipp Thun Date: Thu, 15 Jan 2026 09:24:31 +0100 Subject: [PATCH] Reinstall the default bundler version - just to be sure everything works --- .github/workflows/bump_bundler_version.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bump_bundler_version.yml b/.github/workflows/bump_bundler_version.yml index 2fe0b6dd318..c57054dad4a 100644 --- a/.github/workflows/bump_bundler_version.yml +++ b/.github/workflows/bump_bundler_version.yml @@ -22,14 +22,17 @@ jobs: echo "Remove all bundler versions except the default one" gem uninstall bundler -a -x + BUNDLER_VERSION=$(ruby -rbundler -e 'puts Bundler::VERSION') + + echo "Reinstall the default bundler version - just to be sure everything works" + gem install bundler -v $BUNDLER_VERSION + ruby -v bundler -v # We are modifying the Gemfile.lock, thus have to set frozen to false. bundle config set frozen false - BUNDLER_VERSION=$(ruby -rbundler -e 'puts Bundler::VERSION') - echo "Update bundler version in Gemfile.lock" bundle update --bundler=$BUNDLER_VERSION