From 514bfcda6c438108235937ccbf2fb854f1f3a023 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 23:14:07 +0000 Subject: [PATCH] Bump actions/cache from 4.1.1 to 4.1.2 Bumps [actions/cache](https://github.com/actions/cache) from 4.1.1 to 4.1.2. - [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.1...v4.1.2) --- 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 53ea5496..0f0449ad 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.1" + uses: "actions/cache/restore@v4.1.2" 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.1" + uses: "actions/cache/save@v4.1.2" with: key: "Deno/${{runner.os}}-${{github.run_id}}-${{github.run_attempt}}-${{github.job}}" path: "${{steps.deno-cache-path.outputs.value}}"