From 73a19112f58a31ec046f24e3bd04f3c6f8a1d060 Mon Sep 17 00:00:00 2001 From: Kirill Mokevnin Date: Fri, 31 May 2024 20:35:56 -0400 Subject: [PATCH] fix github/workflows Signed-off-by: Kirill Mokevnin --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cb125c7..7358edd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,10 +7,10 @@ jobs: matrix: os: [ubuntu-latest, macos-latest] # Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0' - ruby: [2.7, '3.0', head] + ruby: ['3.0', head] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }}