We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d53ec8 commit 8c62a78Copy full SHA for 8c62a78
.github/workflows/workflow.yml
@@ -38,7 +38,13 @@ jobs:
38
uses: actions/setup-java@v1
39
with:
40
java-version: 14
41
-
+ - name: Clean cache
42
+ if: matrix.os == 'macos-latest'
43
+ run: mv ~/.gradle/caches ~/.gradle/.invalid_caches
44
+ - uses: actions/cache@v1
45
+ with:
46
+ path: ~/.gradle/caches
47
+ key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}
48
- name: run action
49
uses: ./
50
0 commit comments