From 0ba67cf6f6eeac9eaedcae93ab1aec4fbaf981db Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 20:44:01 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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...v4) --- 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 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 611d1709..13daf019 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: with: node-version: '21.x' check-latest: true - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.npm key: npm-${{ hashFiles('package.json') }} @@ -49,11 +49,11 @@ jobs: with: node-version: '21.x' check-latest: true - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: ~/.npm key: npm-${{ hashFiles('package.json') }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: node_modules/.cache key: build-${{ hashFiles('package.json') }}