Skip to content

Commit

Permalink
Merge pull request #604 from trade-tariff/HOTT-2669-ruby-321
Browse files Browse the repository at this point in the history
HOTT-2669: Bumps ruby to 3.2.1
  • Loading branch information
willfish committed Feb 14, 2023
2 parents dff6a2b + a510274 commit 7a7bdb1
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Expand Up @@ -153,7 +153,7 @@ jobs:

checking:
docker:
- image: cimg/ruby:3.2.0-node
- image: cimg/ruby:3.2.1-node
steps:
- checkout
- ruby/install-deps
Expand Down Expand Up @@ -204,7 +204,7 @@ jobs:
test:
docker:
- image: cimg/ruby:3.2.0-node
- image: cimg/ruby:3.2.1-node
environment:
BUNDLE_JOBS: "3"
BUNDLE_RETRY: "3"
Expand All @@ -226,7 +226,7 @@ jobs:

deploy_dev:
docker:
- image: cimg/ruby:3.2.0
- image: cimg/ruby:3.2.1
environment:
SENTRY_ENVIRONMENT: "development"
steps:
Expand All @@ -243,7 +243,7 @@ jobs:

deploy_main_to_staging:
docker:
- image: cimg/ruby:3.2.0
- image: cimg/ruby:3.2.1
environment:
SENTRY_ENVIRONMENT: "staging"
steps:
Expand All @@ -259,7 +259,7 @@ jobs:

deploy_release_to_staging:
docker:
- image: cimg/ruby:3.2.0
- image: cimg/ruby:3.2.1
steps:
- cf_deploy_docker:
docker_image_tag: $CIRCLE_TAG
Expand All @@ -269,7 +269,7 @@ jobs:

deploy_production:
docker:
- image: cimg/ruby:3.2.0
- image: cimg/ruby:3.2.1
environment:
SENTRY_ENVIRONMENT: "production"
steps:
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Expand Up @@ -6,7 +6,7 @@ inherit_gem:
require: rubocop-rspec

AllCops:
TargetRubyVersion: 3.1.3
TargetRubyVersion: 3.2.1
Exclude:
- 'vendor/**/*'
- 'bin/**'
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
@@ -1 +1 @@
3.2.0
3.2.1
4 changes: 2 additions & 2 deletions Dockerfile
@@ -1,5 +1,5 @@
# Build compilation image
FROM ruby:3.2.0-alpine3.16 as builder
FROM ruby:3.2.1-alpine3.16 as builder

# The application runs from /app
WORKDIR /app
Expand Down Expand Up @@ -40,7 +40,7 @@ RUN rm -rf node_modules log tmp && \
find /usr/local/bundle/gems -name "*.html" -delete

# Build runtime image
FROM ruby:3.2.0-alpine3.16 as production
FROM ruby:3.2.1-alpine3.16 as production

RUN apk add --update --no-cache tzdata && \
cp /usr/share/zoneinfo/Europe/London /etc/localtime && \
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Expand Up @@ -431,7 +431,7 @@ DEPENDENCIES
webpacker

RUBY VERSION
ruby 3.2.0p0
ruby 3.2.1p31

BUNDLED WITH
2.3.8

0 comments on commit 7a7bdb1

Please sign in to comment.