Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: use actions/cache@v3 #14695

Merged
merged 1 commit into from Mar 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: Homebrew/actions/setup-homebrew@master

- name: Cache Bundler RubyGems
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
uses: Homebrew/actions/setup-homebrew@master

- name: Cache Bundler RubyGems
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
uses: Homebrew/actions/setup-homebrew@master

- name: Cache Bundler RubyGems
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
Expand Down Expand Up @@ -276,7 +276,7 @@ jobs:
HOMEBREW_NO_INSTALL_FROM_API: 1

- name: Cache Bundler RubyGems
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ${{ steps.set-up-homebrew.outputs.gems-path }}
key: ${{ runner.os }}-rubygems-${{ steps.set-up-homebrew.outputs.gems-hash }}
Expand All @@ -289,7 +289,7 @@ jobs:
run: mkdir tests

- name: Cache parallel tests log
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: tests
key: ${{ runner.os }}-${{ matrix.test-flags }}-parallel_runtime_rspec-${{ github.sha }}
Expand Down