summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2021-03-24 21:42:44 -0700
committerTim Smith <tsmith84@gmail.com>2021-03-24 21:42:44 -0700
commitd7e5f9969f7a169bdee517d8c20191ca7e0acc9e (patch)
tree7ecd9c46998bc7dc29db611d2c8797ec2fde937f
parentcdb81743278718b2ecc8f5f72e76be3b6b1cb9bb (diff)
downloadchef-d7e5f9969f7a169bdee517d8c20191ca7e0acc9e.tar.gz
Use Ruby 2.6.6 in the version script instead
This has bundler out of the box Signed-off-by: Tim Smith <tsmith@chef.io>
-rwxr-xr-x.expeditor/update_version.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.expeditor/update_version.sh b/.expeditor/update_version.sh
index 25bd08e67d..8b088cbaa9 100755
--- a/.expeditor/update_version.sh
+++ b/.expeditor/update_version.sh
@@ -17,8 +17,8 @@ sed -i -r "s/^(\s*)VERSION = \".+\"/\1VERSION = \"$(cat VERSION)\"/" chef-utils/
sed -i -r "s/VersionString\.new\(\".+\"\)/VersionString.new(\"$(cat VERSION)\")/" lib/chef/version.rb
# Update the version inside Gemfile.lock
-asdf install ruby 2.5.7
-asdf global ruby 2.5.7
+asdf install ruby 2.6.6
+asdf global ruby 2.6.6
bundle update chef chef-config chef-utils --jobs=7 --conservative
# Once Expeditor finishes executing this script, it will commit the changes and push