From 8bf06d0beff3a0d6e9874b22ca61b1dd5eba16d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Apr 2026 05:36:04 +0000 Subject: [PATCH 1/2] Bump ruby/setup-ruby from 1.299.0 to 1.301.0 Bumps [ruby/setup-ruby](https://github.com/ruby/setup-ruby) from 1.299.0 to 1.301.0. - [Release notes](https://github.com/ruby/setup-ruby/releases) - [Changelog](https://github.com/ruby/setup-ruby/blob/master/release.rb) - [Commits](https://github.com/ruby/setup-ruby/compare/3ff19f5e2baf30647122352b96108b1fbe250c64...4c56a21280b36d862b5fc31348f463d60bdc55d5) --- updated-dependencies: - dependency-name: ruby/setup-ruby dependency-version: 1.301.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a088a18..4261c6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4 with: persist-credentials: false - - uses: ruby/setup-ruby@3ff19f5e2baf30647122352b96108b1fbe250c64 # v1 + - uses: ruby/setup-ruby@4c56a21280b36d862b5fc31348f463d60bdc55d5 # v1 with: ruby-version: ${{ matrix.ruby }} bundler: latest # to get this fix: https://github.com/rubygems/rubygems/issues/6165 @@ -76,7 +76,7 @@ jobs: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v4 with: persist-credentials: false - - uses: ruby/setup-ruby@3ff19f5e2baf30647122352b96108b1fbe250c64 # v1 + - uses: ruby/setup-ruby@4c56a21280b36d862b5fc31348f463d60bdc55d5 # v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true From 8b2b92592a0fbae10c3f6518714aadad5bcd123c Mon Sep 17 00:00:00 2001 From: Sebastian Cohnen Date: Mon, 13 Apr 2026 08:06:19 +0200 Subject: [PATCH 2/2] CI: excludes truffel 34 with x86 macOS; adds truffel 33 --- .github/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4261c6e..b0f87c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,14 @@ jobs: - "macos-26-intel" - "ubuntu-24.04" ruby: - - "truffleruby+graalvm" + - "truffleruby+graalvm-33" + - "truffleruby+graalvm-34" + exclude: + # starting TruffleRuby 34.0.0 no longer supports Intel on macOS + - os: "macos-15-intel" + ruby: "truffleruby+graalvm-34" + - os: "macos-26-intel" + ruby: "truffleruby+graalvm-34" name: ${{ matrix.os }} - ${{ matrix.ruby }} runs-on: ${{ matrix.os }}