From caaf0024457a673cfc1614bf4831daee17b51bfc Mon Sep 17 00:00:00 2001 From: Pontus Svensson Date: Tue, 11 Jun 2024 15:36:26 +0200 Subject: [PATCH] Run CI on latest Ruby versions Ruby 2.7 and 3.0 have reached EOL and JRuby 9.4.7 has been released. --- .github/workflows/ci-build-and-install-gem.yml | 2 +- .github/workflows/ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-build-and-install-gem.yml b/.github/workflows/ci-build-and-install-gem.yml index ac15492..f648322 100644 --- a/.github/workflows/ci-build-and-install-gem.yml +++ b/.github/workflows/ci-build-and-install-gem.yml @@ -15,7 +15,7 @@ jobs: - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.1.2 + ruby-version: 3.3 - name: Build and install gem run: gem build *.gemspec && gem install *.gem diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3056564..7c40d9d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - ruby: [2.7.6, 3.0.4, 3.1.2, jruby-9.3.7.0] + ruby: [3.1, 3.2, 3.3, jruby-9.3.14, jruby-9.4.7] steps: - name: Checkout code