From 581eb25227ed1d5dc1d753870452f6682dcfde27 Mon Sep 17 00:00:00 2001 From: Chris Sinjakli Date: Sat, 3 Aug 2024 00:09:01 +0100 Subject: [PATCH] Update GitHub actions `actions/setup-ruby` is deprecated, so we need to switch to the one from the `ruby` org. Also update to the latest `actions/checkout` while we're here. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0188aff..1b4ede8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,8 +11,8 @@ jobs: - 2.7 - 3.0 steps: - - uses: actions/checkout@v2 - - uses: actions/setup-ruby@v1 + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby-version }} - name: Rspec