From 8535c32d3f3225fbb4dd0f6b98987f1533ab7826 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 21:22:43 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 3.3.2 to 4.0.0 Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 4.0.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.3.2...v4.0.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/blog.yaml | 2 +- .github/workflows/ci.yaml | 2 +- .github/workflows/release_main.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/blog.yaml b/.github/workflows/blog.yaml index 61b271309..05c7b05e8 100644 --- a/.github/workflows/blog.yaml +++ b/.github/workflows/blog.yaml @@ -37,7 +37,7 @@ jobs: run: | Rscript ./dependencies.R - name: Restore Blogdown Cache - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.0 with: path: | ./blogdown diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c2c76f933..235dcd69a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -14,7 +14,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 16 - - uses: actions/cache@v3.3.2 + - uses: actions/cache@v4.0.0 with: path: ~/.npm key: ${{ runner.os }}-node3-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release_main.yml b/.github/workflows/release_main.yml index 1e4e061b6..6845a5ffb 100644 --- a/.github/workflows/release_main.yml +++ b/.github/workflows/release_main.yml @@ -47,7 +47,7 @@ jobs: with: node-version: 16 - name: Cache Node.js modules - uses: actions/cache@v3.3.2 + uses: actions/cache@v4.0.0 with: path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS key: ${{ runner.OS }}-node2-${{ hashFiles('**/package-lock.json') }}