From bba850a4fb5c29fa75c11405b6cd58710afc68d4 Mon Sep 17 00:00:00 2001 From: Neil Matatall <448516+oreoshake@users.noreply.github.com> Date: Tue, 9 Mar 2021 09:57:50 -1000 Subject: [PATCH] Update ruby build scripts and bump test matrix versions --- .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 dcd9cd0..94c8b66 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,12 +7,12 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: [ '2.4', '2.5', '2.6', '2.7' ] + ruby: [ '2.5', '2.6', '2.7', '3.0' ] steps: - uses: actions/checkout@v2 - name: Set up Ruby ${{ matrix.ruby }} - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Build and test with Rake