From bb0fece1e6f33e43877f57c134c4706cfa9308fb Mon Sep 17 00:00:00 2001 From: aram price Date: Wed, 13 May 2026 13:57:17 -0700 Subject: [PATCH] Fix: address bundle config deprecation warning Addresses: ``` [DEPRECATED] Using the `config` command without a subcommand [list, get, set, unset] is deprecated and will be removed in the future. Use `bundle config set --global path /usr/local/bundle` instead. ``` ... in ci image build --- ci/docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/docker/Dockerfile b/ci/docker/Dockerfile index 281165e57..d7e17c90c 100644 --- a/ci/docker/Dockerfile +++ b/ci/docker/Dockerfile @@ -142,8 +142,8 @@ RUN cd /tmp \ && ruby-install --jobs=${NUM_CPUS} --cleanup --system ruby ${RUBY_VERSION} \ -- --disable-install-doc --disable-install-rdoc \ && gem update --system \ - && bundle config --global path "${GEM_HOME}" \ - && bundle config --global bin "${GEM_HOME}/bin" + && bundle config set --global path "${GEM_HOME}" \ + && bundle config set --global bin "${GEM_HOME}/bin" RUN bosh_cli_path="/usr/bin/bosh" \