From 1927a3b10a1cf7267f32cca4cd9c3892e3731e5f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 09:13:21 +0000 Subject: [PATCH 1/3] Bump actions/checkout from 6.0.2 to 7.0.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 7.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/de0fac2e4500dabe0009e67214ff5f5447ce83dd...9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 39318c7..5d98d60 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # actions/checkout@v6 see https://github.com/actions/checkout/releases/tag/v6 + - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # actions/checkout@v6 see https://github.com/actions/checkout/releases/tag/v6 with: fetch-depth: 0 # fetch everything - name: Set up Ruby diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c4f3c0d..9c6b6d7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,7 +29,7 @@ jobs: BUNDLE_GEMFILE: ${{ matrix.gemfile }} steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # actions/checkout@v6 see https://github.com/actions/checkout/releases/tag/v6 + - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # actions/checkout@v6 see https://github.com/actions/checkout/releases/tag/v6 - name: Set up Ruby uses: ruby/setup-ruby@4c56a21280b36d862b5fc31348f463d60bdc55d5 # ruby/setup-ruby@v1 see https://github.com/ruby/setup-ruby/tree/v1 with: From 25c011ad9d3140f836c515abbcaf0d149ae15505 Mon Sep 17 00:00:00 2001 From: Brian Shand Date: Wed, 8 Jul 2026 10:33:11 +0100 Subject: [PATCH 2/3] Support minitest 6 --- test/test_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_helper.rb b/test/test_helper.rb index a55763b..5ab0611 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -7,7 +7,7 @@ ActiveRecord::Migrator.migrations_paths = [File.expand_path('../test/dummy/db/migrate', __dir__)] ActiveRecord::Migrator.migrations_paths << File.expand_path('../db/migrate', __dir__) require 'rails/test_help' -require 'minitest/mock' +require 'minitest/autorun' ENV['INTEGRATION_DRIVER'] ||= 'chrome_headless' require 'ndr_dev_support/integration_testing' From 57300bc502d42fc136f9bb29c7f9617aae4f543b Mon Sep 17 00:00:00 2001 From: Brian Shand Date: Wed, 8 Jul 2026 10:46:35 +0100 Subject: [PATCH 3/3] Support minitest 6 --- gemfiles/Gemfile.rails71 | 3 +++ gemfiles/Gemfile.rails72 | 3 +++ 2 files changed, 6 insertions(+) diff --git a/gemfiles/Gemfile.rails71 b/gemfiles/Gemfile.rails71 index 0027fa3..cc2730a 100644 --- a/gemfiles/Gemfile.rails71 +++ b/gemfiles/Gemfile.rails71 @@ -4,3 +4,6 @@ gemspec path: '..' gem 'activerecord', '~> 7.1.0' gem 'activesupport', '~> 7.1.0' + +# Rails <= 8.0 does not support minitest 6 +gem 'minitest', '>= 5.11', '< 6.0' diff --git a/gemfiles/Gemfile.rails72 b/gemfiles/Gemfile.rails72 index f0d108a..1030086 100644 --- a/gemfiles/Gemfile.rails72 +++ b/gemfiles/Gemfile.rails72 @@ -4,3 +4,6 @@ gemspec path: '..' gem 'activerecord', '~> 7.2.0' gem 'activesupport', '~> 7.2.0' + +# Rails <= 8.0 does not support minitest 6 +gem 'minitest', '>= 5.11', '< 6.0'