From 58ceab60c0b29c96745e9a16091c23b79926acc6 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 26 Mar 2022 15:31:33 +0000 Subject: [PATCH] Update actions/cache action to v3 --- .github/workflows/eslint-source.yml | 2 +- .github/workflows/npmpublish.yml | 6 +++--- .github/workflows/test.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/eslint-source.yml b/.github/workflows/eslint-source.yml index edf85e1f..bf6d6b02 100644 --- a/.github/workflows/eslint-source.yml +++ b/.github/workflows/eslint-source.yml @@ -21,7 +21,7 @@ jobs: fetch-depth: 1 - name: Cache node modules - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: node_modules key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/npmpublish.yml b/.github/workflows/npmpublish.yml index 2619dbeb..7567ad44 100644 --- a/.github/workflows/npmpublish.yml +++ b/.github/workflows/npmpublish.yml @@ -19,7 +19,7 @@ jobs: with: node-version: 12 - name: Cache node modules - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: node_modules key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }} @@ -47,7 +47,7 @@ jobs: with: node-version: 12 - name: Cache node modules - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: node_modules key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }} @@ -72,7 +72,7 @@ jobs: node-version: 12 registry-url: https://registry.npmjs.org/ - name: Cache node modules - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: node_modules key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index acc8f8c4..d3d57c0c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,7 +39,7 @@ jobs: node-version: ${{ matrix.node }} - name: Cache node modules - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: node_modules key: ${{ runner.OS }}-build-${{ hashFiles('**/yarn.lock') }}