From 4371dc50db6755f67401d32c119143560ecc8d27 Mon Sep 17 00:00:00 2001 From: DaniBitZesty <84323332+DaniBitZesty@users.noreply.github.com> Date: Mon, 7 Aug 2023 11:07:18 +0100 Subject: [PATCH] Upgrade bundler version ahead of buildpack upgrades --- .github/workflows/ci.yml | 2 +- Dockerfile.local | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d77e83fb..dcc470cb5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: env: DISPLAY_SOCIAL_MOBILITY_AWARD: true DATABASE_URL: "postgresql://postgres:postgres@localhost:5432/qae_test" - BUNDLER_VERSION: 2.4.8 + BUNDLER_VERSION: 2.4.16 DOCKER_TLS_CERTDIR: "" run: | sudo apt update diff --git a/Dockerfile.local b/Dockerfile.local index dda339b8f..fe451a9ec 100644 --- a/Dockerfile.local +++ b/Dockerfile.local @@ -18,7 +18,7 @@ COPY Gemfile /app/Gemfile COPY Gemfile.lock /app/Gemfile.lock RUN bundle config set --local path 'vendor/bundle' RUN bundle config set --local without 'development test' -RUN gem install bundler:2.4.8 && bundle install --jobs 4 --retry 3 +RUN gem install bundler:2.4.16 && bundle install --jobs 4 --retry 3 COPY . /app RUN yarn install