From 801e056dd9d3d3e308ea3b8369a9adde58335999 Mon Sep 17 00:00:00 2001 From: Ben Sheldon Date: Tue, 6 Feb 2024 08:24:57 -0800 Subject: [PATCH 1/2] Remove Ruby 2.7 from test matrix; update Nokogiri v1.16.2 --- .github/workflows/ci.yml | 2 +- Gemfile.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4ef5fab8..833def29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - ruby_version: ["2.7", "3.0", "3.1", "3.2"] + ruby_version: ["3.0", "3.1", "3.2"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/Gemfile.lock b/Gemfile.lock index 0d748cfe..0ebb2696 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -44,14 +44,14 @@ GEM mini_portile2 (2.8.5) minitest (5.20.0) mutex_m (0.2.0) - nokogiri (1.15.5) + nokogiri (1.16.2) mini_portile2 (~> 2.8.2) racc (~> 1.4) - nokogiri (1.15.5-arm64-darwin) + nokogiri (1.16.2-arm64-darwin) racc (~> 1.4) - nokogiri (1.15.5-x86_64-darwin) + nokogiri (1.16.2-x86_64-darwin) racc (~> 1.4) - nokogiri (1.15.5-x86_64-linux) + nokogiri (1.16.2-x86_64-linux) racc (~> 1.4) parallel (1.23.0) parser (3.2.2.4) From b1a082fe8fae369f4578920b8d7e15eaac0674ab Mon Sep 17 00:00:00 2001 From: "Ben Sheldon [he/him]" Date: Tue, 6 Feb 2024 09:28:44 -0800 Subject: [PATCH 2/2] Add Ruby 3.3 to test matrix --- .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 833def29..ef4708e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - ruby_version: ["3.0", "3.1", "3.2"] + ruby_version: ["3.0", "3.1", "3.2", "3.3"] runs-on: ubuntu-latest steps: - uses: actions/checkout@v4