From 2f065fea5e3ad265acbbbc611e155cbfbe512d58 Mon Sep 17 00:00:00 2001 From: Peter Goldstein Date: Wed, 28 Dec 2022 23:04:08 -0500 Subject: [PATCH] Adds Ruby 3.2 to the CI matrix. Also updates the checkout action version. --- .github/dependabot.yml | 6 ++++++ .github/workflows/ci.yml | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..5ace460 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac24c6d..e7c1abe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,12 +12,12 @@ jobs: matrix: os: [ubuntu] - ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1] + ruby: [2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2] runs-on: ${{ matrix.os }}-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: