From f33a344b5328a3206878995cb94d57523a8caf5d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 18:00:48 +0100 Subject: [PATCH] build(deps): bump actions/cache from 3 to 4 (#24) Bumps [actions/cache](https://github.com/actions/cache) from 3 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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/deno-ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deno-ci.yaml b/.github/workflows/deno-ci.yaml index 132981c..3a787d9 100644 --- a/.github/workflows/deno-ci.yaml +++ b/.github/workflows/deno-ci.yaml @@ -37,7 +37,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@v3 + uses: actions/cache@v4 with: path: ~/.cache/deno/deps/https key: deno-https/v1-${{ github.sha }} @@ -65,7 +65,7 @@ jobs: with: deno-version: v1.30 - name: Cache https:// - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.cache/deno/deps/https key: deno-https/v1-${{ github.sha }}-doci