From bcdce7ace70c64e981395f1e38ed50d4182bb424 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Nov 2022 01:28:23 +0000 Subject: [PATCH] Bump actions/cache from 2.1.7 to 3.0.11 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3.0.11. - [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.1.7...v3.0.11) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1a226d55..f5ac4257 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,13 +20,13 @@ jobs: - uses: actions/setup-node@v2.5.0 - uses: olafurpg/setup-gpg@v3 - name: Cache dependencies - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.0.11 with: path: ~/.cache/coursier/v1 key: ${{ runner.os }}-coursier-${{ hashFiles('build.sbt') }}-${{ hashFiles('project/*.scala') }} restore-keys: ${{ runner.os }}-coursier- - name: Cache .sbt - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.0.11 with: path: ~/.sbt key: ${{ runner.os }}-sbt-${{ hashFiles('build.sbt') }}-${{ hashFiles('project/*.scala') }}