Skip to content
This repository was archived by the owner on Sep 15, 2020. It is now read-only.

Commit 432752b

Browse files
committed
Update CI config
1 parent 30a643d commit 432752b

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,20 +34,22 @@ jobs:
3434
run: 'echo "gem: --no-document" > ~/.gemrc'
3535

3636
- name: Set up Ruby cache
37-
uses: actions/cache@v1
37+
uses: actions/cache@v2
3838
with:
3939
path: vendor/bundle
40-
key: ${{ runner.os }}-ruby-v${{ env.RUBY }}-${{ hashFiles('Gemfile') }}-${{ hashFiles('Gemfile.lock') }}-${{ hashFiles('.github/workflows/ci.yml') }}
40+
key: ${{ runner.os }}-ruby-v${{ env.RUBY }}-${{ hashFiles('Gemfile') }}-${{ hashFiles('Gemfile.lock') }}
4141
restore-keys: |
42-
${{ runner.os }}-ruby-v${{ env.RUBY }}-${{ hashFiles('Gemfile') }}-${{ hashFiles('Gemfile.lock') }}-${{ hashFiles('.github/workflows/ci.yml') }}
42+
${{ runner.os }}-ruby-v${{ env.RUBY }}-${{ hashFiles('Gemfile') }}-${{ hashFiles('Gemfile.lock') }}
43+
${{ runner.os }}-ruby-v${{ env.RUBY }}-
4344
4445
- name: Set up npm cache
45-
uses: actions/cache@v1
46+
uses: actions/cache@v2
4647
with:
4748
path: ~/.npm
48-
key: ${{ runner.os }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.github/workflows/ci.yml') }}
49+
key: ${{ runner.os }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
4950
restore-keys: |
50-
${{ runner.OS }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}-${{ hashFiles('.github/workflows/ci.yml') }}
51+
${{ runner.OS }}-node-v${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }}
52+
${{ runner.OS }}-node-v${{ env.NODE }}-
5153
5254
- name: Set up Bundler
5355
run: gem install bundler -v "~> 1.17"

0 commit comments

Comments
 (0)