From 889ec330dad0fdd272e441a75014b4f1ab1bbe9a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2020 14:27:03 +0200 Subject: [PATCH] Bump actions/cache from v1 to v2 (#13922) Bumps [actions/cache](https://github.com/actions/cache) from v1 to v2. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v1...b8204782bbb5f872091ecc5eb9cb7d004e35b1fa) Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index cf0a9789dfc..ae114bf3b77 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -14,7 +14,7 @@ jobs: with: node-version: 12.x - name: Setup NPM cache - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/.npm key: npm-${{ hashFiles('**/package-lock.json') }} @@ -37,7 +37,7 @@ jobs: with: node-version: 12.x - name: Setup NPM cache - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: ~/.npm key: npm-${{ hashFiles('**/package-lock.json') }} @@ -61,7 +61,7 @@ jobs: with: ruby-version: 2.6 - name: Setup Ruby Gems cache - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: vendor/bundle key: gems-${{ hashFiles('**/Gemfile.lock') }} @@ -73,7 +73,7 @@ jobs: bundle config path vendor/bundle bundle install --jobs 4 --retry 3 - name: Setting up Jekyll cache - uses: actions/cache@v1 + uses: actions/cache@v2 with: path: source/.jekyll-cache key: jekyll-${{ hashFiles('**/Gemfile.lock') }}-${{ hashFiles('**/_config.yml') }}