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:
parent
252a7f931e
commit
7fa996cb41
2 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
2.6.1
|
||||
2.6.5
|
||||
|
|
Loading…
Reference in a new issue