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 0f05c21 commit e87a83fCopy full SHA for e87a83f
.github/workflows/gradle.yml
@@ -22,8 +22,6 @@ jobs:
22
uses: actions/checkout@v2
23
- name: Setup Java
24
uses: actions/setup-java@v1
25
- env:
26
- JAVA_VERSION: ${{ matrix.java }}
27
with:
28
java-version: ${{ matrix.java }}
29
- name: Cache Gradle
@@ -32,9 +30,9 @@ jobs:
32
30
path: |
33
31
~/.gradle/caches
34
~/.gradle/wrapper
35
- key: ${{ runner.os }}-${{ JAVA_VERSION }}-gradle-${{ hashFiles('**/*.gradle*') }}
+ key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
36
restore-keys: |
37
- ${{ runner.os }}-${{ JAVA_VERSION }}-gradle-
+ ${{ runner.os }}-gradle-
38
- name: Make gradlew executable (non-Windows only)
39
if: matrix.os != 'windows-latest'
40
run: chmod +x ./gradlew
0 commit comments