From 2e078da928dcc60c4c4738ac8ca102e44347bfec Mon Sep 17 00:00:00 2001 From: Juli Tera Date: Fri, 17 Apr 2026 10:47:16 -0700 Subject: [PATCH 1/3] Update CI to include new versions --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 89aa07d..89636b6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: [2.7, '3.0', 3.1, 3.2, 3.3, 3.4, jruby-9.4, jruby-10.0] + ruby: [2.7, '3.0', 3.1, 3.2, 3.3, 3.4, '4.0', jruby-9.4, jruby-10.0] steps: - name: Setup @@ -36,10 +36,10 @@ jobs: runs-on: ubuntu-latest steps: - - name: Set up Ruby 3.4 + - name: Set up Ruby 4.0 uses: ruby/setup-ruby@v1 with: - ruby-version: 3.4 + ruby-version: '4.0' - uses: actions/checkout@v2 From 795b2cef75e6d270c07e29ea3ac11b665c588971 Mon Sep 17 00:00:00 2001 From: Juli Tera Date: Fri, 17 Apr 2026 11:53:14 -0700 Subject: [PATCH 2/3] Update CI to use bundler config to install without docs --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 89636b6..f1fab02 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,11 +23,12 @@ jobs: with: ruby-version: ${{ matrix.ruby }} - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - name: Install - run: | - bundle install --without docs + run: + bundle config set --local without 'docs' + bundle install - name: Test run: bundle exec rake release:test @@ -41,7 +42,7 @@ jobs: with: ruby-version: '4.0' - - uses: actions/checkout@v2 + - uses: actions/checkout@v6 - name: Install gems run: bundle install From 02ae3400fff66b52e46fb23a97f3b08920d423a8 Mon Sep 17 00:00:00 2001 From: Juli Tera Date: Fri, 17 Apr 2026 11:54:47 -0700 Subject: [PATCH 3/3] Fix --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1fab02..f7d0018 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: - uses: actions/checkout@v6 - name: Install - run: + run: | bundle config set --local without 'docs' bundle install