From 961bced6f31bed7a7d8ef704f5150c8d4e504983 Mon Sep 17 00:00:00 2001 From: Keenan Brock Date: Thu, 19 Sep 2024 17:01:28 -0400 Subject: [PATCH] upgrading ruby to 3.3 --- .github/workflows/ci.yaml | 3 ++- Gemfile | 3 +-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 882ed6c3222..f1c74a3c519 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,6 +16,7 @@ jobs: ruby-version: - '3.0' - '3.1' + - '3.3' test-suite: - vmdb - security @@ -52,6 +53,6 @@ jobs: - name: Run tests run: bundle exec rake - name: Report code coverage - if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.1' && matrix.test-suite == 'vmdb' }} + if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.3' && matrix.test-suite == 'vmdb' }} continue-on-error: true uses: paambaati/codeclimate-action@v5 diff --git a/Gemfile b/Gemfile index 102344e6952..e8ac3b8e86c 100644 --- a/Gemfile +++ b/Gemfile @@ -1,5 +1,4 @@ -raise "Ruby versions < 3.0.1 are unsupported!" if RUBY_VERSION < "3.0.1" -raise "Ruby versions >= 3.2.0 are unsupported!" if RUBY_VERSION >= "3.2.0" +ruby ">3.0.1", "<3.4.0" source 'https://rubygems.org'