From 039b9d3f1e941b049a4bdeddc6b66309ac75479e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 May 2026 18:29:27 +0000 Subject: [PATCH 1/2] Bump ruby/setup-ruby from 1.306.0 to 1.307.0 Bumps [ruby/setup-ruby](https://github.com/ruby/setup-ruby) from 1.306.0 to 1.307.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/v1.306.0...v1.307.0) --- updated-dependencies: - dependency-name: ruby/setup-ruby dependency-version: 1.307.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff4a68b..0bb610c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: - uses: actions/checkout@v6.0.2 - name: Set up Ruby ${{ matrix.ruby-version }} - uses: ruby/setup-ruby@v1.306.0 + uses: ruby/setup-ruby@v1.307.0 with: ruby-version: ${{ matrix.ruby-version }} bundler-cache: true @@ -50,7 +50,7 @@ jobs: - uses: actions/checkout@v6.0.2 - name: Set up Ruby - uses: ruby/setup-ruby@v1.306.0 + uses: ruby/setup-ruby@v1.307.0 with: ruby-version: '3.4' bundler-cache: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c1ddaa1..7b09927 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v6.0.2 - name: Set up Ruby - uses: ruby/setup-ruby@v1.306.0 + uses: ruby/setup-ruby@v1.307.0 with: ruby-version: '3.4' bundler-cache: true From eedea483ef1f206bfa07e7c479a164bc55323544 Mon Sep 17 00:00:00 2001 From: Derek Bender <170351+djbender@users.noreply.github.com> Date: Thu, 14 May 2026 09:47:01 -0700 Subject: [PATCH 2/2] Allow Ruby head failures in CI matrix Bundler 4.0.6 references Pathname::SEPARATOR_PAT which Ruby head (4.1.0+1) made private. Skip head failures until Bundler ships a fix. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bb610c..2710cf8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,7 @@ on: jobs: test: runs-on: ubuntu-latest + continue-on-error: ${{ matrix.ruby-version == 'head' }} strategy: matrix: