From 6d194e6e9349c571be77dedf84451d804c6084a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 14:33:37 +0100 Subject: [PATCH] fix(deps): bump actions/cache from 3 to 4 (#2) Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 3f8a5cf..23ba105 100644 --- a/action.yml +++ b/action.yml @@ -36,7 +36,7 @@ runs: - name: 'yq: cache restore' id: YQ-CACHE if: ${{ (inputs.use-cache == true || inputs.use-cache == 'true') && !env.ACT }} # https://github.com/nektos/act#skipping-steps - uses: actions/cache/restore@v3 # https://github.com/actions/cache/tree/main/restore + uses: actions/cache/restore@v4 # https://github.com/actions/cache/tree/main/restore with: path: ${{ runner.temp }}/yq key: ${{ runner.os }}-yq-${{ inputs.version }} @@ -176,7 +176,7 @@ runs: echo '::endgroup::' - name: 'yq: cache update' - uses: actions/cache/save@v3 + uses: actions/cache/save@v4 if: ${{ steps.YQ-SETUP.outputs.need_cache_update == 'true' }} with: path: ${{ runner.temp }}/yq