diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 040f1445..d3d74c1b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: with: node-version: 16.x - name: Cache Node.js modules - uses: actions/cache@v3.0.11 + uses: actions/cache@v3.3.2 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node-16.x-${{ hashFiles('**/package-lock.json') }} @@ -47,7 +47,7 @@ jobs: with: node-version: ${{ matrix.node-version }} - name: Cache Node.js modules - uses: actions/cache@v3.0.11 + uses: actions/cache@v3.3.2 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 1d96824e..71edf1d9 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -24,7 +24,7 @@ jobs: with: node-version: '16.x' - name: Cache Node.js modules - uses: actions/cache@v3.0.11 + uses: actions/cache@v3.3.2 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node-16.x-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 898ea3f0..bb12144a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: with: node-version: 16.x - name: Cache Node.js modules - uses: actions/cache@v3.0.11 + uses: actions/cache@v3.3.2 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node-16.x-${{ hashFiles('**/package-lock.json') }} @@ -61,7 +61,7 @@ jobs: with: version: latest - name: Cache Docker layers - uses: actions/cache@v3.0.11 + uses: actions/cache@v3.3.2 with: path: /tmp/.buildx-cache key: ${{ runner.OS }}-buildx-${{ github.sha }}