From f85de42393ef3e1f7b550e5408bf18880746e673 Mon Sep 17 00:00:00 2001 From: Andre Arko Date: Wed, 22 Nov 2023 17:40:18 -0800 Subject: [PATCH] update github actions --- .github/workflows/ci.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d0aac73..706c661 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,18 +8,12 @@ on: jobs: test: - runs-on: ubuntu-latest - strategy: - matrix: - ruby-version: ['3.0'] - steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - ruby-version: ${{ matrix.ruby-version }} - bundler-cache: true # runs 'bundle install' and caches installed gems automatically + bundler-cache: true - name: Run tests run: bin/rspec