We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5035bd3 commit 3465341Copy full SHA for 3465341
1 file changed
.github/workflows/maven.yml
@@ -21,6 +21,14 @@ jobs:
21
22
steps:
23
- uses: actions/checkout@v3
24
+ - name: Cache Maven
25
+ id: cache-primes
26
+ uses: actions/cache@v3
27
+ with:
28
+ path: |
29
+ ~/.m2
30
+ ~/repository
31
+ key: "latest-build"
32
- name: Set up JDK 8
33
uses: actions/setup-java@v3
34
with:
@@ -50,7 +58,7 @@ jobs:
50
58
path: |
51
59
~/.m2
52
60
~/repository
53
- key: ${{ github.job }}-${{ hashFiles('**/pom.xml') }}
61
54
62
55
63
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
56
64
- name: Update dependency graph
0 commit comments