From 5974ecc775810bf3cfe97f1448fafcd6a571e214 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 7 Nov 2023 21:37:21 +0000 Subject: [PATCH 1/3] build(deps): bump mutex_m from 0.1.2 to 0.2.0 Bumps [mutex_m](https://github.com/ruby/mutex_m) from 0.1.2 to 0.2.0. - [Release notes](https://github.com/ruby/mutex_m/releases) - [Commits](https://github.com/ruby/mutex_m/compare/v0.1.2...v0.2.0) --- updated-dependencies: - dependency-name: mutex_m dependency-type: indirect update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index e705e77050..f26fe79476 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -394,7 +394,7 @@ GEM multi_json (1.15.0) multi_test (1.1.0) multi_xml (0.6.0) - mutex_m (0.1.2) + mutex_m (0.2.0) nenv (0.3.0) nesty (1.0.2) net-imap (0.4.4) From 63d3b01f0dd770afa32720142e0b8ad9185efe8d Mon Sep 17 00:00:00 2001 From: ColinBruce Date: Wed, 8 Nov 2023 12:54:52 +0000 Subject: [PATCH 2/3] Update circle bundle install commands Remove gem system install, it was added because of an earlier bug and it's now blocked anyway! Move setting the local path into it's own command as it's soon to be depreacted as a flag --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e4a50576fd..9fa0c672f6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -87,8 +87,8 @@ references: run: name: Install ruby gems command: | - gem update --system - bundle install --path=vendor/bundle --jobs=4 && bundle clean + bundle config set --local path 'vendor/bundle' + bundle install --jobs=4 && bundle clean install_js_packages: &install_js_packages run: From b786d05f6b7bbfe855774b03b52bd6fb816ee132 Mon Sep 17 00:00:00 2001 From: ColinBruce Date: Wed, 8 Nov 2023 12:56:12 +0000 Subject: [PATCH 3/3] Update bundler version --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index f26fe79476..90b27c8e79 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -844,4 +844,4 @@ RUBY VERSION ruby 3.2.2p53 BUNDLED WITH - 2.4.12 + 2.4.21