From 4d81bb2e4ed4052561d5dfd4e5a8b7825035a32a Mon Sep 17 00:00:00 2001 From: Gonzalo Diaz Date: Thu, 9 May 2024 15:31:06 -0400 Subject: [PATCH] [BUGFIX] sonarcloud: Shallow clone detected during the analysis. Some files will miss SCM information. This will affect features like auto-assignment of issues. Please configure your build to disable shallow clone. https://stackoverflow.com/questions/59000099/sonarqube-with-shallow-clone-warning-even-with-shallow-disabled-on-jenkins-build --- .github/workflows/node-coverage.js.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/node-coverage.js.yml b/.github/workflows/node-coverage.js.yml index 5b3afdf8..a4ddb36b 100644 --- a/.github/workflows/node-coverage.js.yml +++ b/.github/workflows/node-coverage.js.yml @@ -22,7 +22,8 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 - + with: + fetch-depth: 0 - name: Set up Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: