We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27acecb commit 035b298Copy full SHA for 035b298
.github/workflows/bump_bundler_version.yml
@@ -22,14 +22,17 @@ jobs:
22
echo "Remove all bundler versions except the default one"
23
gem uninstall bundler -a -x
24
25
+ BUNDLER_VERSION=$(ruby -rbundler -e 'puts Bundler::VERSION')
26
+
27
+ echo "Reinstall the default bundler version - just to be sure everything works"
28
+ gem install bundler -v $BUNDLER_VERSION
29
30
ruby -v
31
bundler -v
32
33
# We are modifying the Gemfile.lock, thus have to set frozen to false.
34
bundle config set frozen false
35
- BUNDLER_VERSION=$(ruby -rbundler -e 'puts Bundler::VERSION')
-
36
echo "Update bundler version in Gemfile.lock"
37
bundle update --bundler=$BUNDLER_VERSION
38
0 commit comments