update namespaces of different steps of build job

This commit is contained in:
Subhrodip Mohanta 2020-10-17 10:14:49 +05:30 committed by GitHub
parent 911cfd64af
commit 38cc490e3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,8 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - name: Checkout Code
uses: actions/checkout@v2
with: with:
# Disabling shallow clone for improving relevancy of SonarQube reporting # Disabling shallow clone for improving relevancy of SonarQube reporting
fetch-depth: 0 fetch-depth: 0
@ -56,7 +57,8 @@ jobs:
key: ${{ runner.os }}-sonar key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar
- uses: actions/cache@v2 - name: Cache Maven dependencies
uses: actions/cache@v2
with: with:
path: ~/.m2/repository path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}