From ad92b4aa880e47e3be74d8d3f276973bc145019e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Feb 2021 13:48:41 +0000 Subject: [PATCH] Bump actions/cache from v1 to v2.1.4 Bumps [actions/cache](https://github.com/actions/cache) from v1 to v2.1.4. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v1...26968a09c0ea4f3e233fdddbafd1166051a095f6) Signed-off-by: dependabot[bot] --- .github/workflows/scala.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/scala.yml b/.github/workflows/scala.yml index 2cc8c856..b18ab1fd 100644 --- a/.github/workflows/scala.yml +++ b/.github/workflows/scala.yml @@ -19,19 +19,19 @@ jobs: - uses: actions/checkout@v2 - name: Cache jabba - uses: actions/cache@v1 + uses: actions/cache@v2.1.4 with: path: ~/.jabba key: ${{ runner.os }}-jabba-cache-${{ hashFiles('**/workflows/scala.yml') }} - name: Cache SBT ivy cache - uses: actions/cache@v1 + uses: actions/cache@v2.1.4 with: path: ~/.ivy2/cache key: ${{ runner.os }}-sbt-ivy-cache-${{ hashFiles('**/build.sbt') }} - name: Cache SBT - uses: actions/cache@v1 + uses: actions/cache@v2.1.4 with: path: ~/.sbt key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }}