From 8934be117d4737be189cc85d594f5937b37640a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Oct 2024 23:16:34 +0000 Subject: [PATCH] Bump actions/cache from 4.1.0 to 4.1.1 Bumps [actions/cache](https://github.com/actions/cache) from 4.1.0 to 4.1.1. - [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/v4.1.0...v4.1.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/review-deno-code.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/review-deno-code.yml b/.github/workflows/review-deno-code.yml index d2e73070..02e333af 100644 --- a/.github/workflows/review-deno-code.yml +++ b/.github/workflows/review-deno-code.yml @@ -44,7 +44,7 @@ jobs: Add-Content -LiteralPath $Env:GITHUB_OUTPUT -Value "value=$($DenoInfo.denoDir)" -Confirm:$False -Encoding 'UTF8NoBOM' - name: "Restore Deno Cache" id: "deno-cache-restore" - uses: "actions/cache/restore@v4.1.0" + uses: "actions/cache/restore@v4.1.1" with: key: "Deno/${{runner.os}}-${{github.run_id}}-${{github.run_attempt}}-${{github.job}}" restore-keys: |- @@ -142,7 +142,7 @@ jobs: npm publish --dry-run - name: "Save Deno Cache" if: "${{!cancelled() && steps.deno-cache-restore.outcome == 'success'}}" - uses: "actions/cache/save@v4.1.0" + uses: "actions/cache/save@v4.1.1" with: key: "Deno/${{runner.os}}-${{github.run_id}}-${{github.run_attempt}}-${{github.job}}" path: "${{steps.deno-cache-path.outputs.value}}"