diff --git a/.github/workflows/test-ruby.yml b/.github/workflows/test-ruby.yml index aaff309ae6..fb7a562b92 100644 --- a/.github/workflows/test-ruby.yml +++ b/.github/workflows/test-ruby.yml @@ -124,6 +124,7 @@ jobs: fail-fast: false matrix: ruby-version: + - '3.2' - '3.3' - '.ruby-version' steps: @@ -225,6 +226,7 @@ jobs: fail-fast: false matrix: ruby-version: + - '3.2' - '3.3' - '.ruby-version' steps: @@ -303,6 +305,7 @@ jobs: fail-fast: false matrix: ruby-version: + - '3.2' - '3.3' - '.ruby-version' @@ -419,6 +422,7 @@ jobs: fail-fast: false matrix: ruby-version: + - '3.2' - '3.3' - '.ruby-version' search-image: diff --git a/.rubocop.yml b/.rubocop.yml index 1bc90ffd54..ebeed6ea49 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -8,7 +8,7 @@ AllCops: - lib/mastodon/migration_helpers.rb ExtraDetails: true NewCops: enable - TargetRubyVersion: 3.3 # Oldest supported ruby version + TargetRubyVersion: 3.2 # Oldest supported ruby version inherit_from: - .rubocop/layout.yml diff --git a/Gemfile b/Gemfile index eb130ecf2d..1d49e94692 100644 --- a/Gemfile +++ b/Gemfile @@ -1,7 +1,7 @@ # frozen_string_literal: true source 'https://rubygems.org' -ruby '>= 3.3.0' +ruby '>= 3.2.0' gem 'propshaft' gem 'puma', '~> 6.3'