From bf56ede87f56fe78a34effaa6d27ad18cb95a058 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Feb 2024 16:29:38 +0000 Subject: [PATCH] build(deps): bump actions/cache from 3 to 4 (#315) 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/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d4dc5a6..614a95e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ jobs: - name: Get yarn cache directory path id: yarn-cache-dir-path run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT - - uses: actions/cache/restore@v3 + - uses: actions/cache/restore@v4 id: cache-restore with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} @@ -25,7 +25,7 @@ jobs: cache: 'yarn' - name: Yarn Install run: yarn install - - uses: actions/cache/save@v3 + - uses: actions/cache/save@v4 id: cache-save with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }}