From 31094f3511536635b831eb375008b4563d568f8a Mon Sep 17 00:00:00 2001 From: Riccardo Lupinu Date: Tue, 16 Apr 2024 11:27:35 +0200 Subject: [PATCH] maintenance 04/2024 --- .github/workflows/test.yml | 2 +- Gemfile | 2 +- spec/spec_helper.rb | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a0e213d..1a14fa9 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: matrix: os: [ubuntu-latest, macos-latest] # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0' - ruby: ['3.0', 3.1, 3.2, 3.3, head, truffleruby] + ruby: [3.1, 3.2, 3.3, head, truffleruby] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 diff --git a/Gemfile b/Gemfile index 54dc4c8..54ba3a7 100644 --- a/Gemfile +++ b/Gemfile @@ -4,4 +4,4 @@ gemspec gem 'factory_bot_rails' gem 'rspec-collection_matchers' gem 'rails' -gem 'sqlite3', '~> 1.4.1' +gem 'sqlite3', '~> 1.7.3' diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 2549db0..868c946 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -7,6 +7,7 @@ require 'factory_bot_rails' require 'rspec/collection_matchers' require 'factories/user' +require 'ostruct' I18n.enforce_available_locales = false RSpec::Expectations.configuration.warn_about_potential_false_positives = false