From 10419ef77ac7f27bba93c8b9010ba4a2e0d4235a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 10:43:28 +0100 Subject: [PATCH] chore(deps): bump actions/cache from 3 to 4 (#4772) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/nightly-build.yml | 4 ++-- .github/workflows/nodejs.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index b99405e8c74..95672d754b1 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -26,13 +26,13 @@ jobs: - name: Cache npm cache files id: cache-npm-cache-files - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.npm key: npm-cache-${{ runner.os }}-${{ hashFiles('package-lock.json') }} - name: Cache Cypress binary id: cache-cypress-binary - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: cypress/cache key: cypress-binary-${{ hashFiles('package-lock.json') }} diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 131b9f119db..16409b74b31 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -27,7 +27,7 @@ jobs: node-version: 20 - name: Cache Node Modules and Cypress binary - uses: actions/cache@v3 + uses: actions/cache@v4 id: cache-primes with: path: |