From c782de54e90e6ae9e486c3f435b5266513b2faac Mon Sep 17 00:00:00 2001 From: Peter Goldstein Date: Tue, 14 Mar 2023 10:37:05 -0400 Subject: [PATCH] Add Ruby 3.2 to the CI matrix. Upgrade checkout action version. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 35997ec..1a4f7e1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,12 +6,12 @@ jobs: fail-fast: false matrix: os: [ ubuntu-latest, macos-latest ] - ruby: [ '2.7', '3.0', '3.1' ] + ruby: [ '2.7', '3.0', '3.1', '3.2' ] runs-on: ${{ matrix.os }} steps: - name: Check out repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1