From b8ec2836d20be3d748dad0fbb24d7a4e4a9fe930 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Dec 2024 22:25:09 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 3.0.11 to 4.2.0 Bumps [actions/cache](https://github.com/actions/cache) from 3.0.11 to 4.2.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.0.11...v4.2.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 4 ++-- .github/workflows/gh-pages.yml | 2 +- .github/workflows/release.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 040f1445..fd38b79b 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@v4.2.0 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@v4.2.0 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..5e6c7136 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@v4.2.0 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..78faf7f2 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@v4.2.0 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@v4.2.0 with: path: /tmp/.buildx-cache key: ${{ runner.OS }}-buildx-${{ github.sha }}