We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 911cfd6 commit 38cc490Copy full SHA for 38cc490
1 file changed
.github/workflows/maven-ci.yml
@@ -39,7 +39,8 @@ jobs:
39
40
steps:
41
42
- - uses: actions/checkout@v2
+ - name: Checkout Code
43
+ uses: actions/checkout@v2
44
with:
45
# Disabling shallow clone for improving relevancy of SonarQube reporting
46
fetch-depth: 0
@@ -56,7 +57,8 @@ jobs:
56
57
key: ${{ runner.os }}-sonar
58
restore-keys: ${{ runner.os }}-sonar
59
- - uses: actions/cache@v2
60
+ - name: Cache Maven dependencies
61
+ uses: actions/cache@v2
62
63
path: ~/.m2/repository
64
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
0 commit comments