We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d1a3cf commit 2a28242Copy full SHA for 2a28242
1 file changed
.github/workflows/maven.yml
@@ -28,12 +28,19 @@ jobs:
28
steps:
29
- uses: actions/checkout@v4
30
31
+ - name: Cache Maven dependencies
32
+ uses: actions/cache@v3
33
+ with:
34
+ path: ~/.m2/repository
35
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
36
+ restore-keys: |
37
+ ${{ runner.os }}-maven-
38
+
39
- name: Set up JDK 17
40
uses: actions/setup-java@v4
41
with:
42
java-version: '17'
43
distribution: 'temurin'
- cache: maven
44
45
- name: Wait for PostgreSQL
46
run: |
0 commit comments