This is an automated email from the ASF dual-hosted git repository.

panxiaolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 83d5831ae0 [Chore](checks) fix Can't find 'action.yml', 'action.yaml' 
or 'Dockerfile' (#24424)
83d5831ae0 is described below

commit 83d5831ae0e4f98b282bdd641278c43f9e40795f
Author: Pxl <pxl...@qq.com>
AuthorDate: Fri Sep 15 13:26:17 2023 +0800

    [Chore](checks) fix Can't find 'action.yml', 'action.yaml' or 'Dockerfile' 
(#24424)
    
    fix Can't find 'action.yml', 'action.yaml' or 'Dockerfile'
---
 .github/workflows/sonarcloud.yml | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml
index 26627b8d8e..e5b732492d 100644
--- a/.github/workflows/sonarcloud.yml
+++ b/.github/workflows/sonarcloud.yml
@@ -26,9 +26,11 @@ jobs:
     env:
       BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory # Directory where 
build-wrapper output will be placed
     steps:
-      - uses: actions/checkout@v3
+      - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
+        uses: actions/checkout@v3
         with:
-          fetch-depth: 0  # Shallow clones should be disabled for a better 
relevancy of analysis
+          persist-credentials: false
+          submodules: recursive
 
       - name: Paths Filter
         uses: ./.github/actions/paths-filter
@@ -106,9 +108,11 @@ jobs:
     name: "SonarCloud on cpp"
     runs-on: ubuntu-22.04
     steps:
-      - uses: actions/checkout@v3
+      - name: "Checkout ${{ github.ref }} ( ${{ github.sha }} )"
+        uses: actions/checkout@v3
         with:
-          fetch-depth: 0
+          persist-credentials: false
+          submodules: recursive
 
       - name: Paths Filter
         uses: ./.github/actions/paths-filter


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to