From 6a3058ae51e75abd0b211ccba5cfe6be85b08e65 Mon Sep 17 00:00:00 2001 From: Ted Ralphs Date: Mon, 29 Apr 2024 11:01:52 -0400 Subject: [PATCH] Revert to working version --- .github/workflows/tests.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a8ea797..a9383b0 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,14 +8,23 @@ jobs: test-bot: strategy: matrix: - os: [ubuntu-22.04, macos-13] + os: [ubuntu-22.04, macos-13, macos-14] runs-on: ${{ matrix.os }} steps: - name: Set up Homebrew id: set-up-homebrew uses: Homebrew/actions/setup-homebrew@master + - name: Cache Homebrew Bundler RubyGems + id: cache + uses: actions/cache@v1 + with: + path: ${{ steps.set-up-homebrew.outputs.gems-path }} + key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }} + restore-keys: ${{ runner.os }}-rubygems- + - name: Install Homebrew Bundler RubyGems + if: steps.cache.outputs.cache-hit != 'true' run: brew install-bundler-gems - run: brew test-bot --only-cleanup-before @@ -29,7 +38,7 @@ jobs: - name: Upload bottles as artifact if: always() && github.event_name == 'pull_request' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: bottles path: '*.bottle.*'