From 5d342b3a9cff023145a86425f8d375c8b2f7e737 Mon Sep 17 00:00:00 2001 From: Jeremy Loy Date: Mon, 16 Mar 2020 13:03:36 -0400 Subject: [PATCH] Include Kotlinscript Gradle files Tested this with my own repo which uses a mix of `build.gradle` and `build.gradle.kts` files and this glob seems to be working correctly. As an aside, please checkout #215 as it would make the process of verifying these globs easier! --- examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples.md b/examples.md index b21fda9..8ed05a9 100644 --- a/examples.md +++ b/examples.md @@ -104,7 +104,7 @@ We cache the elements of the Cabal store separately, as the entirety of `~/.caba - uses: actions/cache@v1 with: path: ~/.gradle/caches - key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} + key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} restore-keys: | ${{ runner.os }}-gradle- ```