From 77724ed9f9977060caad53c007dd7c77d6bcd8a6 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Fri, 8 Mar 2024 10:09:09 +0100 Subject: [PATCH] Upgrade to Bundler 2.5.6 Now that Heroku finally has added support for Bundler 2.5.6, it's safe to use Bundler 2.5.6 as the default version. https://devcenter.heroku.com/changelog-items/2808 --- example/.github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/.github/workflows/test.yml b/example/.github/workflows/test.yml index ba33d99..0fc1e14 100644 --- a/example/.github/workflows/test.yml +++ b/example/.github/workflows/test.yml @@ -31,12 +31,12 @@ jobs: PG_MAJOR=14 NODE_MAJOR=16 YARN_VERSION=1.22.17 - BUNDLER_VERSION=2.3.6 + BUNDLER_VERSION=2.5.6 # Need for local gems installation - name: Setup Ruby with Bundler uses: ruby/setup-ruby@v1 with: - bundler: 2.3.6 + bundler: 2.5.6 - name: Install dip run: gem install dip - name: Bundle deps