From e7685d61bd2826f0b6ea779749992be50c017821 Mon Sep 17 00:00:00 2001 From: Peter Goldstein Date: Mon, 26 Dec 2022 15:45:09 -0500 Subject: [PATCH] Adds Ruby 3.2 to the CI matrix. Updates checkout actions version. --- .github/workflows/ci.yml | 5 +++-- .github/workflows/lint.yml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6169728..4d1857f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,14 +11,15 @@ jobs: strategy: fail-fast: false matrix: - ruby: ["2.5", "2.6", "2.7", "3.0", "3.1", ruby-head] + ruby: ["2.5", "2.6", "2.7", "3.0", "3.1", "3.2", ruby-head] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: bundler-cache: true # 'bundle install' and cache gems ruby-version: ${{ matrix.ruby }} + bundler: 2.3.26 - name: Run tests run: bundle exec rake diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index fb56815..87e7a9f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -9,7 +9,7 @@ jobs: name: Rubocop steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: