From 7de0fe0edc1306a6cb0cd982cac6f83f083c9f30 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 21:07:10 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 2.1.7 to 4.1.1 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 4.1.1. - [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/v2.1.7...v4.1.1) --- 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 3e358b8c..d5779933 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@v2.1.7 + uses: actions/cache@v4.1.1 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@v2.1.7 + uses: actions/cache@v4.1.1 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 23f28f13..45519076 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@v2.1.7 + uses: actions/cache@v4.1.1 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 def42c82..6de175d4 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@v2.1.7 + uses: actions/cache@v4.1.1 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node-16.x-${{ hashFiles('**/package-lock.json') }} @@ -60,7 +60,7 @@ jobs: with: version: latest - name: Cache Docker layers - uses: actions/cache@v2.1.7 + uses: actions/cache@v4.1.1 with: path: /tmp/.buildx-cache key: ${{ runner.OS }}-buildx-${{ github.sha }}