File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -102,14 +102,14 @@ jobs:
102102 thresholdAll : 0.85
103103
104104 - name : setup java
105- if : github.actor != 'dependabot[bot]' && ( success() || failure() )
105+ if : success() || failure()
106106 uses : actions/setup-java@v5
107107 with :
108108 distribution : " corretto"
109109 java-version : " 17"
110110
111111 - name : provision sonar-scanner
112- if : github.actor != 'dependabot[bot]' && ( success() || failure() )
112+ if : success() || failure()
113113 run : |
114114 export SONAR_VERSION="4.7.0.2747"
115115 wget -q --max-redirect=0 "https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_VERSION}.zip" -O sonar-scanner.zip
@@ -118,7 +118,7 @@ jobs:
118118 scripts/sonar_tests.py
119119
120120 - name : run sonar scan
121- if : github.actor != 'dependabot[bot]' && ( success() || failure() )
121+ if : success() || failure()
122122 run : |
123123 PATH="$PWD/sonar-scanner/bin:$PATH"
124124 if [[ "${{ github.event_name }}" == "pull_request" ]]; then
You can’t perform that action at this time.
0 commit comments