Use Ruby 3.2.2 by default and bump CI patch versions

This commit is contained in:
Sami Samhuri 2023-10-05 14:32:23 -07:00
parent 5fbe29abfd
commit 6a61cf762b
2 changed files with 7 additions and 7 deletions

View file

@ -4,7 +4,7 @@ executors:
parameters:
version:
description: "Ruby version number"
default: "3.2.1"
default: "3.2.2"
type: string
docker:
- image: cimg/ruby:<< parameters.version >>
@ -15,7 +15,7 @@ commands:
parameters:
version:
description: "Ruby version number"
default: "3.2.1"
default: "3.2.2"
type: string
steps:
- restore_cache:
@ -24,7 +24,7 @@ commands:
- run:
name: Install Ruby Dependencies
command: |
gem install bundler -v 2.4.3 --conservative --no-document
gem install bundler -v 2.4.6 --conservative --no-document
bundle config --local path vendor/bundle
bundle check || (bundle install --jobs=4 --retry=3 && bundle clean)
- save_cache:
@ -44,7 +44,7 @@ jobs:
parameters:
version:
description: "Ruby version number"
default: "3.2.1"
default: "3.2.2"
type: string
executor:
name: ruby
@ -65,14 +65,14 @@ workflows:
- test:
matrix:
parameters:
version: ["2.7.5", "3.0.3", "3.1.3", "3.2.1"]
version: ["3.0.6", "3.1.4", "3.2.2"]
cron-workflow:
jobs:
- rubocop
- test:
matrix:
parameters:
version: ["2.7.5", "3.0.3", "3.1.3", "3.2.1"]
version: ["3.0.6", "3.1.4", "3.2.2"]
triggers:
- schedule:
cron: "0 13 * * 6"

View file

@ -1 +1 @@
3.2.1
3.2.2