From 2e0d133b7de14dcb611897c96102a913fc6233fb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 16 Jul 2025 07:47:18 +0000 Subject: [PATCH 1/2] Bump rake from 13.2.1 to 13.3.0 Bumps [rake](https://github.com/ruby/rake) from 13.2.1 to 13.3.0. - [Release notes](https://github.com/ruby/rake/releases) - [Changelog](https://github.com/ruby/rake/blob/master/History.rdoc) - [Commits](https://github.com/ruby/rake/compare/v13.2.1...v13.3.0) --- updated-dependencies: - dependency-name: rake dependency-version: 13.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index dd6a98e7b2..67d26dee6f 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -90,7 +90,7 @@ GEM timeout (~> 0.4) racc (1.8.1) rainbow (3.1.1) - rake (13.2.1) + rake (13.3.0) rake-compiler (1.3.0) rake rb-fsevent (0.11.2) @@ -175,8 +175,6 @@ GEM zlib (3.2.1) PLATFORMS - arm64-darwin - arm64-darwin-24 x86_64-linux DEPENDENCIES From 563c548cdb19445d0789ac34a5d182e2fe75b1d1 Mon Sep 17 00:00:00 2001 From: Soutaro Matsumoto Date: Wed, 16 Jul 2025 23:38:38 +0900 Subject: [PATCH 2/2] bundle config set force_ruby_platform true on head version. --- .github/workflows/ruby.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 3e647decb5..e764f887f3 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -55,6 +55,10 @@ jobs: echo "NO_MINITEST=true" >> $GITHUB_ENV bundle config set --local without 'minitest' if: ${{ contains(matrix.ruby, 'head') }} + - name: bundle config set force_ruby_platform true if head + if: ${{ contains(matrix.ruby, 'head') }} + run: | + bundle config set force_ruby_platform true - name: Skip installing type checkers if: ${{ ! contains(matrix.job, 'typecheck_test') }} run: |