From e15f546e5154386eaed93bcef488d72bac888210 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 20:33:14 +0000 Subject: [PATCH] build(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' 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 86cc7e1..8f71222 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@v5 + # uses: actions/cache@v6 # 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@v5 + uses: actions/cache@v6 with: path: ~/.cache/deno/deps/https key: deno-https/v1-${{ hashFiles('**/deps.ts') }}