From af8651e0c572659714acf4ad26467d943a567ebe Mon Sep 17 00:00:00 2001 From: Jeremy Loy Date: Wed, 18 Mar 2020 09:40:55 -0400 Subject: [PATCH] Include Kotlinscript Gradle files (#216) 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- ```