From 4dac3f98b3600f1f99265a929a0df69d93eba448 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Jan 2026 20:05:45 +0000 Subject: [PATCH] build(deps): bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deno-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deno-ci.yml b/.github/workflows/deno-ci.yml index eedb1b4..80663f6 100644 --- a/.github/workflows/deno-ci.yml +++ b/.github/workflows/deno-ci.yml @@ -31,7 +31,7 @@ jobs: # We're more selective here to prevent cross-branch contamination # Disabled for now because https://github.com/denoland/deno/pull/12830 # - name: Cache file:// - # uses: actions/cache@v4 + # uses: actions/cache@v5 # with: # path: ~/.cache/deno/gen/file # key: deno/${{ matrix.deno-version }}-file/v1-${{ github.ref }}-${{ github.sha }} @@ -40,7 +40,7 @@ jobs: # "https" cache: code from the Internet # External sources won't change much so we use less precise keys - name: Cache https:// - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/deno/deps/https key: deno-https/v1-${{ hashFiles('**/deps.ts') }}