Merge pull request #127 from samsonjs/ruby34

Update to Ruby 3.4.1
This commit is contained in:
Sami Samhuri 2025-01-06 13:51:07 -08:00 committed by GitHub
commit 3b637f924d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 7 deletions

View file

@ -4,7 +4,7 @@ executors:
parameters:
version:
description: "Ruby version number"
default: "3.3.5"
default: "3.4.1"
type: string
docker:
- image: cimg/ruby:<< parameters.version >>
@ -15,7 +15,7 @@ commands:
parameters:
version:
description: "Ruby version number"
default: "3.3.5"
default: "3.4.1"
type: string
steps:
- restore_cache:
@ -24,7 +24,7 @@ commands:
- run:
name: Install Ruby Dependencies
command: |
gem install bundler -v 2.4.20 --conservative --no-document
gem install bundler -v 2.6.2 --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.3.5"
default: "3.4.1"
type: string
executor:
name: ruby
@ -65,14 +65,14 @@ workflows:
- test:
matrix:
parameters:
version: ["3.1.6", "3.2.5", "3.3.5"]
version: ["3.1.6", "3.2.6", "3.3.6", "3.4.1"]
cron-workflow:
jobs:
- rubocop
- test:
matrix:
parameters:
version: ["3.1.6", "3.2.5", "3.3.5"]
version: ["3.1.6", "3.2.6", "3.3.6", "3.4.1"]
triggers:
- schedule:
cron: "0 13 * * 6"

View file

@ -1 +1 @@
3.3.4
3.4.1