From b6066b1dac5c8607e20a4e2876012ed6fdef6a66 Mon Sep 17 00:00:00 2001 From: Fabio Lima Date: Sun, 14 Sep 2025 10:49:49 -0700 Subject: [PATCH 1/2] Update to ruby 3.3 --- .ruby-version | 2 +- Gemfile | 2 +- Gemfile.lock | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ruby-version b/.ruby-version index b347b11e..37d02a6e 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.2.3 +3.3.8 diff --git a/Gemfile b/Gemfile index cf4893ba..2799c910 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,7 @@ source "https://rubygems.org" git_source(:github) { |repo| "https://github.com/#{repo}.git" } -ruby "3.2.3" +ruby "3.3.8" # Bundle edge Rails instead: gem "rails", github: "rails/rails" gem "rails", "~> 7.1.0" diff --git a/Gemfile.lock b/Gemfile.lock index 87f6989f..351b4a5a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -531,7 +531,7 @@ DEPENDENCIES web-console (~> 4.2.1) RUBY VERSION - ruby 3.2.3p157 + ruby 3.3.8p144 BUNDLED WITH 2.6.9 From ea92ac16c4e9d4ae6827d830adb080a3f5cb0bf3 Mon Sep 17 00:00:00 2001 From: Fabio Lima Date: Sun, 14 Sep 2025 10:55:51 -0700 Subject: [PATCH 2/2] Update ruby version of github workflows --- .github/workflows/brakeman-analysis.yml | 4 ++-- .github/workflows/rubocop.yml | 4 ++-- .github/workflows/workflow.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/brakeman-analysis.yml b/.github/workflows/brakeman-analysis.yml index 0345f8a1..c917d08b 100644 --- a/.github/workflows/brakeman-analysis.yml +++ b/.github/workflows/brakeman-analysis.yml @@ -22,10 +22,10 @@ jobs: uses: actions/checkout@v3 # Customize the ruby version depending on your needs - - name: Setup Ruby 3.2.3 + - name: Setup Ruby 3.3.8 uses: ruby/setup-ruby@v1 with: - ruby-version: 3.2.3 + ruby-version: 3.3.8 - name: brakeman uses: reviewdog/action-brakeman@v2 diff --git a/.github/workflows/rubocop.yml b/.github/workflows/rubocop.yml index a6961fd6..e63d40c5 100644 --- a/.github/workflows/rubocop.yml +++ b/.github/workflows/rubocop.yml @@ -14,10 +14,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Setup Ruby 3.2.3 + - name: Setup Ruby 3.3.8 uses: ruby/setup-ruby@v1 with: - ruby-version: 3.2.3 + ruby-version: 3.3.8 - name: Cache gems uses: actions/cache@v1 with: diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index d694ef97..afdd6294 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -28,10 +28,10 @@ jobs: steps: - uses: actions/checkout@v1 - - name: Setup Ruby 3.2.3 + - name: Setup Ruby 3.3.8 uses: ruby/setup-ruby@v1 with: - ruby-version: 3.2.3 + ruby-version: 3.3.8 - name: Setup Node 15 uses: actions/setup-node@v1