From fcdb4466760d593e5771cefe6f1af28d30277d1d Mon Sep 17 00:00:00 2001 From: Patrik Wenger Date: Tue, 7 Jan 2025 21:49:24 +0100 Subject: [PATCH] run CI with Ruby 3.4 --- .github/workflows/lint.yml | 2 +- .github/workflows/rspec.yml | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 14c43be..6c5a724 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: - ruby-version: 3.3 + ruby-version: 3.4 bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Lint files with Rubocop run: | diff --git a/.github/workflows/rspec.yml b/.github/workflows/rspec.yml index 288224d..0bf7802 100644 --- a/.github/workflows/rspec.yml +++ b/.github/workflows/rspec.yml @@ -19,6 +19,7 @@ jobs: - "3.1" - "3.2" - "3.3" + - "3.4" - "head" - "jruby-9.4" runs-on: ${{ matrix.os }}-latest