ops: bump ruby version to 2.6.5

This fixes a crash related to "Spring + Postgres" occuring on local
development environments on Ruby 2.6.1.
This commit is contained in:
Pierre de La Morinerie 2019-10-22 14:09:25 +00:00
parent 252a7f931e
commit 7fa996cb41
2 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@ version: 2
defaults: &defaults
working_directory: ~/tps
docker:
- image: circleci/ruby:2.6.1-node-browsers
- image: circleci/ruby:2.6.5-node-browsers
- image: circleci/postgres:9.5
environment:
POSTGRES_USER: tps_test
@ -13,12 +13,12 @@ defaults: &defaults
bundle_restore_cache: &bundle_restore_cache
restore_cache:
name: Restore Bundler Package Cache
key: bundle-install-v8-{{ arch }}-{{ checksum "Gemfile.lock" }}
key: bundle-install-v9-{{ arch }}-{{ checksum "Gemfile.lock" }}
bundle_save_cache: &bundle_save_cache
save_cache:
name: Save Bundler Package Cache
key: bundle-install-v8-{{ arch }}-{{ checksum "Gemfile.lock" }}
key: bundle-install-v9-{{ arch }}-{{ checksum "Gemfile.lock" }}
paths:
- ~/vendor/bundle

View file

@ -1 +1 @@
2.6.1
2.6.5