From f8e5ec4e17c0a3a500d3c2d94206a1ba19327006 Mon Sep 17 00:00:00 2001 From: Cooper Gillan Date: Fri, 28 Jan 2022 21:27:11 +0000 Subject: [PATCH 1/3] GH-48 - Pin latest Ubuntu version --- .github/workflows/ruby.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index d7f0e76..8876c31 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -9,7 +9,7 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: fail-fast: false From eaa0864c40ae95b56429e6a00465441a01194d60 Mon Sep 17 00:00:00 2001 From: Cooper Gillan Date: Fri, 28 Jan 2022 21:31:14 +0000 Subject: [PATCH 2/3] GH-48 - Run builds for Ruby 3.1 also Run the builds for Ruby 3.1 since it is the latest version --- .github/workflows/ruby.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 8876c31..f6c4f66 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -29,6 +29,7 @@ jobs: - 2.6 - 2.7 - '3.0' # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0' + - 3.1 env: BUNDLE_GEMFILE: ${{ matrix.gemfile }} steps: From cca6fd63cc355323daa1d6f5f529725aadba0611 Mon Sep 17 00:00:00 2001 From: Cooper Gillan Date: Fri, 28 Jan 2022 21:59:47 +0000 Subject: [PATCH 3/3] Revert "GH-48 - Run builds for Ruby 3.1 also" This reverts commit eaa0864c40ae95b56429e6a00465441a01194d60 to not yet run builds for Ruby 3.1. See #56 for other details on Ruby 3.1 support. --- .github/workflows/ruby.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index f6c4f66..8876c31 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -29,7 +29,6 @@ jobs: - 2.6 - 2.7 - '3.0' # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0' - - 3.1 env: BUNDLE_GEMFILE: ${{ matrix.gemfile }} steps: