From 9b70ca2e344807761cd780793241690bca9391e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 May 2024 12:54:27 +0000 Subject: [PATCH] build(deps): bump actions/cache from 2 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 4. - [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/v2...v4) --- updated-dependencies: - dependency-name: actions/cache 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 4c7b7fe..3f2113d 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@v2 + # uses: actions/cache@v4 # 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@v2 + uses: actions/cache@v4 with: path: ~/.cache/deno/deps/https key: deno-https/v1-${{ hashFiles('**/deps.ts') }}