From afcc49a40e2306c97dec88fd8d5edfe6ba1b40b2 Mon Sep 17 00:00:00 2001 From: Peter Goldstein Date: Fri, 12 May 2023 15:22:57 -0400 Subject: [PATCH] Add Ruby 3.2 to CI. Update checkout action. --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0bebc76..2854561 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: BUNDLE_WITHOUT: development:test steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Ruby 2.7 uses: ruby/setup-ruby@v1 @@ -36,11 +36,11 @@ jobs: strategy: fail-fast: false matrix: - ruby: [ '2.7', '3.0', '3.1' ] + ruby: [ '2.7', '3.0', '3.1', '3.2' ] gemfile: [ 'faraday-1', 'faraday-2' ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }}