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 e373d84 commit ba30b65Copy full SHA for ba30b65
.github/workflows/main.yml
@@ -31,12 +31,14 @@ jobs:
31
with:
32
java-version: '17'
33
distribution: 'temurin'
34
- cache: 'gradle'
35
- cache-dependency-path: |
36
- **/*.gradle*
37
- **/**/gradle-wrapper.properties
38
- - name: Set up Gradle (caches wrapper & deps)
39
- uses: gradle/actions/setup-gradle@v3
+ - name: Cache Dependencies
+ uses: actions/cache@v4
+ with:
+ # Avoid caching the generated artifacts
+ path: |
+ ~/.m2/repository/*
40
+ !~/.m2/repository/com/formkiq
41
+ key: "${{ matrix.runtime }}-maven-${{ hashFiles('**/pom.xml') }}"
42
- name: Build Project
43
run: ./gradlew build --no-daemon
44
- name: Upload test reports
0 commit comments