From 5dd91b2d3cfdd35d4cc06eff0c4507e16bced209 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 21:57:09 +0000 Subject: [PATCH] build(deps): 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 | 10 +++++----- .github/workflows/deploy.yml | 2 +- .github/workflows/reusable-collect.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 1b2043e3d..58f5db43b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -25,7 +25,7 @@ jobs: uses: actions/checkout@v4 - name: "Cache NPM dependencies" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "~/.npm" key: npm-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('package.json') }} @@ -52,7 +52,7 @@ jobs: uses: actions/checkout@v4 - name: "Cache NPM dependencies" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "~/.npm" key: npm-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('package.json') }} @@ -84,7 +84,7 @@ jobs: uses: actions/checkout@v4 - name: "Cache NPM dependencies" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "~/.npm" key: npm-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('package.json') }} @@ -111,7 +111,7 @@ jobs: uses: actions/checkout@v4 - name: "Cache NPM dependencies" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "~/.npm" key: npm-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('package.json') }} @@ -138,7 +138,7 @@ jobs: uses: actions/checkout@v4 - name: "Cache NPM dependencies" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "~/.npm" key: npm-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('package.json') }} diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4ff837dd7..d98a0b3fc 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v4 - name: "Cache NPM dependencies" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "~/.npm" key: npm-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('package.json') }} diff --git a/.github/workflows/reusable-collect.yml b/.github/workflows/reusable-collect.yml index c7f34c135..e86be337b 100644 --- a/.github/workflows/reusable-collect.yml +++ b/.github/workflows/reusable-collect.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v4 - name: "Cache NPM dependencies" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "~/.npm" key: npm-dependencies-${{ runner.os }}-${{ env.cache-version }}-${{ hashFiles('package.json') }}