diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cbea0af..5ab9241 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,8 +24,13 @@ jobs: } ] EOF + - name: Inspect tool cache + run: | + echo "RUNNER_TOOL_CACHE=$RUNNER_TOOL_CACHE" + ls -la "$RUNNER_TOOL_CACHE" + find "$RUNNER_TOOL_CACHE" -maxdepth 2 -mindepth 1 | sort - name: SonarQube Scan - uses: SonarSource/sonarqube-scan-action@jh/SQSCANGHA-144_add_qa_gate_jobs + uses: SonarSource/sonarqube-scan-action@0368e05ab12cda7555b44a36d694dc4044545b29 # worktree-SQSCANGHA-135 with: args: > -Dsonar.scanner.sonarcloudUrl=${{ vars.SONAR_CLOUD_URL }} @@ -34,6 +39,12 @@ jobs: -Dsonar.organization=${{ vars.SONAR_ORGANIZATION }} env: SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + - name: Inspect tool cache + if: always() + run: | + echo "RUNNER_TOOL_CACHE=$RUNNER_TOOL_CACHE" + ls -la "$RUNNER_TOOL_CACHE" + find "$RUNNER_TOOL_CACHE" -maxdepth 2 -mindepth 1 | sort gate: name: Build - gate