@@ -37,14 +37,18 @@ jobs:
3737 - " 21"
3838
3939 steps :
40+ # sonarcloud-ignore githubactions:S7637
4041 - uses : actions/checkout@v5
42+ # sonarcloud-ignore githubactions:S7637
4143 - uses : actions/setup-node@v5
4244 - name : Set up JDK ${{ matrix.java }}
45+ # sonarcloud-ignore githubactions:S7637
4346 uses : actions/setup-java@v5
4447 with :
4548 distribution : " temurin"
4649 java-version : ${{ matrix.java }}
4750 - name : Cache .m2
51+ # sonarcloud-ignore githubactions:S7637
4852 uses : actions/cache@v4
4953 with :
5054 path : ~/.m2/repository
5761 cd sdk && npm run clean && npm run build
5862
5963 - name : Publish Test Report
64+ # sonarcloud-ignore githubactions:S7637
6065 uses : mikepenz/action-junit-report@v5
61- if : success() || failure() # always run even if the previous step fails
66+ if : success() || failure()
6267 with :
6368 summary : true
6469 detailed_summary : true
6772 report_paths : ' **/target/*-reports/TEST-*.xml'
6873
6974 - name : Upload coverage to Codecov
75+ # sonarcloud-ignore githubactions:S7637
70767177 with :
7278 file : " ${{ github.workspace }}/spi/target/jacoco.xml"
@@ -89,10 +95,13 @@ jobs:
8995 - " 26.4.0"
9096 - " nightly"
9197 steps :
98+ # sonarcloud-ignore githubactions:S7637
9299 - uses : actions/checkout@v5
93100 - name : " Use Node.js"
101+ # sonarcloud-ignore githubactions:S7637
94102 uses : actions/setup-node@v5
95103 - name : Install Java
104+ # sonarcloud-ignore githubactions:S7637
96105 uses : actions/setup-java@v5
97106 with :
98107 distribution : " temurin" # See 'Supported distributions' for available options
@@ -104,6 +113,7 @@ jobs:
104113 ./mvnw javadoc:javadoc
105114
106115 - name : Run End2End Tests
116+ # sonarcloud-ignore githubactions:S7637
107117 uses : nick-fields/retry@v3
108118 with :
109119 max_attempts : 3
@@ -116,6 +126,7 @@ jobs:
116126
117127 - name : Build Container Image for End2End Testing
118128 id : build-image
129+ # sonarcloud-ignore githubactions:S7637
119130 uses : redhat-actions/buildah-build@v2
120131 with :
121132 image : continuoussecuritytooling/audited-keycloak
@@ -125,6 +136,7 @@ jobs:
125136
126137 - name : Push To Docker Hub (Preview)
127138 id : push-to-dockerhub-preview
139+ # sonarcloud-ignore githubactions:S7637
128140 uses : redhat-actions/push-to-registry@v2
129141 with :
130142 image : ${{ steps.build-image.outputs.image }}
0 commit comments