From 13189bca2fcf7fc8d2d564120c33bbbb88f3b820 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 May 2022 22:05:08 -0400 Subject: [PATCH] build(deps): bump actions/cache from 2 to 3 (#127) --- .github/workflows/integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 7b2c690..3b84991 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -23,14 +23,14 @@ jobs: id: yarn-cache-dir run: echo ::set-output name=CACHE_DIR::$(yarn cache dir) - name: Node.js yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.yarn-cache-dir.outputs.CACHE_DIR }} key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn - name: Node.js modules cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: modules-cache with: path: ${{ github.workspace }}/node_modules