Skip to content
Closed
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.1
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.1
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.1
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.1
with:
path: source/.jekyll-cache
key: jekyll-${{ hashFiles('**/Gemfile.lock') }}-${{ hashFiles('**/_config.yml') }}
Expand Down