From acd81394468161c529531ad5caf06989595c85a0 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Fri, 14 Aug 2020 14:20:36 +0100 Subject: [PATCH] GitHub Actions cleanup - Use `cache@v1` to fix issues. - Remove unnecessary implicit/duplicate `name`. --- .github/workflows/tests.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0a2be9da9..f334580a1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,7 +2,7 @@ name: GitHub Actions CI on: push: branches: master - pull_request: [] + pull_request: jobs: tests: runs-on: ${{ matrix.os }} @@ -17,7 +17,7 @@ jobs: - name: Cache Homebrew Bundler RubyGems id: cache - uses: actions/cache@main + uses: actions/cache@v1 with: path: ${{ steps.set-up-homebrew.outputs.gems-path }} key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }} @@ -27,8 +27,7 @@ jobs: if: steps.cache.outputs.cache-hit != 'true' run: brew install-bundler-gems - - name: Run brew test-bot --only-tap-syntax - run: brew test-bot --only-tap-syntax + - run: brew test-bot --only-tap-syntax - name: Set up Ruby if: matrix.os == 'ubuntu-latest'