Update cache keys on CI (#654)

This commit is contained in:
Ara Adkins 2020-04-15 14:06:27 +01:00 committed by GitHub
parent d296ac1ef8
commit b2440fb6d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ jobs:
uses: actions/cache@v1.1.2
with:
path: /home/runner/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('project/**') }}
key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }}
restore-keys: ${{ runner.os }}-sbt-
- name: Cache SBT Project
uses: actions/cache@v1.1.2
@ -138,7 +138,7 @@ jobs:
uses: actions/cache@v1.1.2
with:
path: /home/runner/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('project/**') }}
key: ${{ runner.os }}-sbt-${{ hashFiles('**/build.sbt') }}
restore-keys: ${{ runner.os }}-sbt-
- name: Cache SBT Project
uses: actions/cache@v1.1.2