From f461633d081c1046f845a5bc4ae43ce97e0cca17 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 11 Jun 2021 22:31:29 +0000 Subject: [PATCH] Bump actions/cache from 1 to 2.1.6 Bumps [actions/cache](https://github.com/actions/cache) from 1 to 2.1.6. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v1...v2.1.6) --- 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 ac04dd8d..a1fd82ea 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,13 +20,13 @@ jobs: - uses: actions/setup-node@v1 - uses: olafurpg/setup-gpg@v3 - name: Cache dependencies - uses: actions/cache@v1 + uses: actions/cache@v2.1.6 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@v1 + uses: actions/cache@v2.1.6 with: path: ~/.sbt key: ${{ runner.os }}-sbt-${{ hashFiles('build.sbt') }}-${{ hashFiles('project/*.scala') }}