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

github-actions(deps): update actions/cache requirement to v2.1.4 #6

Merged
merged 1 commit into from
Mar 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
ruby-version: 3.0.0
- name: Cache gems
uses: actions/cache@v1
uses: actions/cache@v2.1.4
with:
path: vendor/bundle
key: ${{ runner.os }}-linter-${{ hashFiles('**/Gemfile.lock') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
ruby-version: 3.0.0

- name: Cache gems
uses: actions/cache@v1
uses: actions/cache@v2.1.4
with:
path: vendor/bundle
key: ${{ runner.os }}-test-${{ hashFiles('**/Gemfile.lock') }}
Expand All @@ -55,7 +55,7 @@ jobs:
run: echo "::set-output name=dir::$(yarn cache dir)"

- name: Cache Js dependencies
uses: actions/cache@v2
uses: actions/cache@v2.1.4
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
Expand All @@ -69,7 +69,7 @@ jobs:
node-version: 15.5.1

- name: Cache Node Modules
uses: actions/cache@v2
uses: actions/cache@v2.1.4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
Expand Down