From dcf11500a4e660874739ff01fe165968398cc4ba Mon Sep 17 00:00:00 2001 From: Brian Lopez Date: Tue, 17 Dec 2024 06:26:51 -0800 Subject: [PATCH] Update ci.yml Move from actions/setup-ruby to ruby/setup-ruby and latest actions/checkout --- .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 ebfb87b..255a86c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,9 +11,9 @@ jobs: runs-on: ubuntu-latest name: Test on Ruby ${{ matrix.ruby_version }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup Ruby ${{ matrix.ruby_version }} - uses: actions/setup-ruby@v1 + uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby_version }} - name: Install dependencies