From 43a816fe054126197a57ae7d6c9895935a38c506 Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Sat, 26 Oct 2024 00:11:37 +0200 Subject: [PATCH 1/3] ci: try to fix the test suits by installing latest rubygems --- .github/workflows/testing.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 84d9978..2869cfd 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -66,6 +66,7 @@ jobs: ruby-version: ${{ matrix.ruby }} bundler: 1.17 bundler-cache: true + rubygems: latest env: JSON_VERSION: ${{ matrix.json }} From 285424bbf6ebff5f565c7e173726f81199d4551c Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Sat, 26 Oct 2024 00:17:31 +0200 Subject: [PATCH 2/3] ci: drop 2.1 and add 3.2 and 3.3 to test matrix --- .github/workflows/testing.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 2869cfd..9b4bf56 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -34,11 +34,12 @@ jobs: matrix: ruby: - - "2.1" - "2.5" - "2.7" - "3.0" - "3.1" + - "3.2" + - "3.3" json: - "1.6" - "1.7" From d59141eced30f3f107ca942e2e1a0debf3fd3715 Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Sat, 26 Oct 2024 00:18:39 +0200 Subject: [PATCH 3/3] ci: add json 2.7 to test matrix --- .github/workflows/testing.yml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 9b4bf56..5d8ff05 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -51,11 +51,7 @@ jobs: - "2.4" - "2.5" - "2.6" - exclude: - - json: "2.6" - ruby: "2.1" - - json: "2.7" - ruby: "2.3" + - "2.7" steps: - name: Checkout source