From 38cc490e3f2cb309659a3f5bafa4b843f049cace Mon Sep 17 00:00:00 2001 From: Subhrodip Mohanta Date: Sat, 17 Oct 2020 10:14:49 +0530 Subject: [PATCH] update namespaces of different steps of build job --- .github/workflows/maven-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven-ci.yml b/.github/workflows/maven-ci.yml index f7bc81695..048a1bc80 100644 --- a/.github/workflows/maven-ci.yml +++ b/.github/workflows/maven-ci.yml @@ -39,7 +39,8 @@ jobs: steps: - - uses: actions/checkout@v2 + - name: Checkout Code + uses: actions/checkout@v2 with: # Disabling shallow clone for improving relevancy of SonarQube reporting fetch-depth: 0 @@ -56,7 +57,8 @@ jobs: key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - - uses: actions/cache@v2 + - name: Cache Maven dependencies + uses: actions/cache@v2 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} -- GitLab