From d65305438a1cb2a58ef49a33d483e45553d59d56 Mon Sep 17 00:00:00 2001 From: Kevin Lee Date: Sun, 1 Dec 2019 13:56:53 +1100 Subject: [PATCH] Changed: GitHub Actions cache setup to handle sbt version change --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1d3def4..95425ee 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,7 +13,7 @@ jobs: uses: actions/cache@v1 with: path: ~/.cache/coursier - key: ${{ runner.os }}-coursier-${{ hashFiles('**/*.sbt') }} + key: ${{ runner.os }}-coursier-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('**/build.properties') }} restore-keys: | ${{ runner.os }}-coursier- @@ -21,7 +21,7 @@ jobs: uses: actions/cache@v1 with: path: ~/.ivy2/cache - key: ${{ runner.os }}-ivy-${{ hashFiles('**/*.sbt') }} + key: ${{ runner.os }}-ivy-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('**/build.properties') }} restore-keys: | ${{ runner.os }}-ivy-