From b1db5a74c752ac53be7ce8091208a1ce59409539 Mon Sep 17 00:00:00 2001 From: Pascal Zumkehr Date: Tue, 20 Feb 2024 10:32:54 +0100 Subject: [PATCH] Add ruby 3.3 build, remove support for 2.7 --- .github/workflows/build.yml | 14 +++++++------- Gemfile.lock | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 498034c..b0f2977 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,10 +10,10 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby-version: ["2.7", "3.0", "3.1", "3.2"] + ruby-version: ["3.0", "3.1", "3.2", "3.3"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: @@ -26,11 +26,11 @@ jobs: name: Lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.1 + ruby-version: 3.2 bundler-cache: true # runs 'bundle install' and caches installed gems automatically - name: Run rubocop run: bundle exec rubocop @@ -39,13 +39,13 @@ jobs: name: Coverage runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: 3.1 + ruby-version: 3.2 bundler-cache: true # runs 'bundle install' and caches installed gems automatically - - uses: paambaati/codeclimate-action@v3.0.0 + - uses: paambaati/codeclimate-action@v5.0.0 env: CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} with: diff --git a/Gemfile.lock b/Gemfile.lock index 9fa4ce0..41e4f21 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -18,7 +18,7 @@ GEM hashery (2.1.2) json (2.6.3) matrix (0.4.2) - nokogiri (1.15.2-x86_64-linux) + nokogiri (1.16.2-x86_64-linux) racc (~> 1.4) parallel (1.23.0) parser (3.2.2.3) @@ -38,7 +38,7 @@ GEM ttfunk (~> 1.7) prawn-table (0.2.2) prawn (>= 1.3.0, < 3.0.0) - racc (1.7.1) + racc (1.7.3) rainbow (3.1.1) rake (13.0.6) regexp_parser (2.8.1)