From 7fcea7338e996bdcc3139d30282547b42b00884c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 15:17:51 -0500 Subject: [PATCH] Bump actions/cache from 2 to 4 (#106) Bumps [actions/cache](https://github.com/actions/cache) from 2 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/v2...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/template.yml | 2 +- .github/workflows/website.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/template.yml b/.github/workflows/template.yml index bd91cc2..095b063 100644 --- a/.github/workflows/template.yml +++ b/.github/workflows/template.yml @@ -157,7 +157,7 @@ jobs: - name: Restore Package Cache if: runner.os != 'Windows' && steps.check-rmd.outputs.count != 0 - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ${{ env.R_LIBS_USER }} key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }} diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 0ab780b..b05fef9 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -55,7 +55,7 @@ jobs: - name: Restore R Cache if: steps.check-rmd.outputs.count != 0 - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ${{ env.R_LIBS_USER }} key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}