From bf77a6acba48d4adcefbef001e289fab27af8457 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Dec 2020 14:59:37 +0000 Subject: [PATCH] chore(deps): bump actions/cache from v2.1.2 to v2.1.3 Bumps [actions/cache](https://github.com/actions/cache) from v2.1.2 to v2.1.3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.2...0781355a23dac32fd3bac414512f4b903437991a) Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4dfb052..62882c9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: path: open-zwave - name: Cache openzwave - uses: actions/cache@v2.1.2 + uses: actions/cache@v2.1.3 with: path: open-zwave key: ${{ hashFiles('open-zwave/.git/refs/heads/master') }} @@ -48,7 +48,7 @@ jobs: - name: Cache node modules id: cache-node-modules - uses: actions/cache@v2.1.2 + uses: actions/cache@v2.1.3 with: path: node_modules key: ${{ matrix['node-version'] }}-npm-${{ hashFiles('package-lock.json') }} @@ -63,7 +63,7 @@ jobs: - name: Cache build id: cache-build - uses: actions/cache@v2.1.2 + uses: actions/cache@v2.1.3 with: path: dist key: ${{ matrix['node-version'] }}-cache-build-${{ hashFiles('build/*') }}-${{ hashFiles('src/*') }}-${{ hashFiles('static/*') }}-${{ hashFiles('package-lock.json') }}