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

Bump actions/cache from 2 to 3.0.11 #139

Open
wants to merge 1 commit into
base: current
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
node-version: 12.x
- name: Setup NPM cache
uses: actions/cache@v2
uses: actions/cache@v3.0.11
with:
path: ~/.npm
key: npm-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -37,7 +37,7 @@ jobs:
with:
node-version: 12.x
- name: Setup NPM cache
uses: actions/cache@v2
uses: actions/cache@v3.0.11
with:
path: ~/.npm
key: npm-${{ hashFiles('**/package-lock.json') }}
Expand All @@ -61,7 +61,7 @@ jobs:
with:
ruby-version: 2.6
- name: Setup Ruby Gems cache
uses: actions/cache@v2
uses: actions/cache@v3.0.11
with:
path: vendor/bundle
key: gems-${{ hashFiles('**/Gemfile.lock') }}
Expand All @@ -73,7 +73,7 @@ jobs:
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- name: Setting up Jekyll cache
uses: actions/cache@v2
uses: actions/cache@v3.0.11
with:
path: source/.jekyll-cache
key: jekyll-${{ hashFiles('**/Gemfile.lock') }}-${{ hashFiles('**/_config.yml') }}
Expand Down