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') }}