We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac07885 commit 7c27ee4Copy full SHA for 7c27ee4
.github/workflows/build.yml
@@ -29,18 +29,20 @@ jobs:
29
distribution: 'temurin'
30
architecture: x64
31
32
+ - name: Restore Maven Cache
33
+ uses: skjolber/maven-cache-github-action@v3.1.1
34
+ with:
35
+ step: restore
36
+
37
- name: Verify Reference Codes
38
run: |
39
cd ./reference-code
40
mvn verify
41
- - name: Cache Maven Dependencies
- uses: actions/cache@v3
42
+ - name: Save Maven Cache
43
44
with:
- path: ~/.m2/repository
- key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- restore-keys: |
- ${{ runner.os }}-maven-
45
+ step: save
46
47
- name: Setup Node.js
48
uses: actions/setup-node@v2
0 commit comments