File tree Expand file tree Collapse file tree 5 files changed +17
-9
lines changed
modules/md-service-authen Expand file tree Collapse file tree 5 files changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -82,10 +82,13 @@ jobs:
8282 format : sarif
8383 gh-code-scanning-compat : true
8484 max-allowed-issues : 2147483647
85+ - name : Clean duplicates
86+ run : |
87+ jq '.runs |= unique_by({tool, invocations, results})' results.sarif > final-results.sarif
8588 - name : Upload SARIF results file
8689 uses : github/codeql-action/upload-sarif@main
8790 with :
88- sarif_file : results.sarif
91+ sarif_file : final- results.sarif
8992
9093 smoke-test :
9194 name : Smoke Test
@@ -116,7 +119,12 @@ jobs:
116119 echo $str Smoke Test Start $str
117120 date
118121 locale
119- java -cp "target/*:resource/*" org.testng.TestNG testng.xml
122+ sleep 10
123+ java -cp "target/*:resource/*" org.testng.TestNG testng.xml || test_status=$?
124+ if [[ ${test_status} -ne 0 ]]; then
125+ docker logs singleton
126+ exit ${test_status}
127+ fi
120128 echo $str Smoke Test End $str
121129
122130 performance-test :
Original file line number Diff line number Diff line change 33
44buildscript {
55 ext {
6- springBootVersion = ' 3.1.11 '
6+ springBootVersion = ' 3.1.12 '
77 }
88 repositories {
99 mavenLocal()
@@ -51,7 +51,7 @@ subprojects{
5151 httpclient= ' 4.5.13'
5252 jacksonVersion = ' 2.16.0'
5353 springdocVersion= ' 2.2.0'
54- tomcatVersion= ' 10.1.20 '
54+ tomcatVersion= ' 10.1.24 '
5555
5656 ehCacheVersion = ' 3.10.8'
5757 cacheApiVersion= ' 1.1.1'
@@ -73,7 +73,7 @@ subprojects{
7373
7474 postgresqlVersion = " 42.1.4"
7575 druidVersion = " 1.1.8"
76- awsS3Version = " 1.12.497 "
76+ awsS3Version = " 1.12.741 "
7777 swaggerVersion = " 3.0.0"
7878 icu4jVersion = " 60.3"
7979
Original file line number Diff line number Diff line change 1- // Copyright 2019-2023 VMware, Inc.
1+ // Copyright 2019-2024 VMware, Inc.
22// SPDX-License-Identifier: EPL-2.0
33apply plugin : ' java-library'
44apply plugin : ' org.springframework.boot'
@@ -39,7 +39,7 @@ dependencies {
3939 compileOnly(" io.jsonwebtoken:jjwt:$jjwtVersion " )
4040 compileOnly(" org.apache.commons:commons-lang3:$commonsLangVersion " )
4141 compileOnly(" org.springdoc:springdoc-openapi-starter-webmvc-api:$springdocVersion " )
42- implementation(" com.nimbusds:nimbus-jose-jwt:9.27 " )
42+ implementation(" com.nimbusds:nimbus-jose-jwt:9.37.3 " )
4343}
4444
4545bootJar {
Original file line number Diff line number Diff line change @@ -178,7 +178,7 @@ bootJar {
178178 from (" ${ baseOutputDir} /html5" ) {
179179 into ' static/i18n/docs'
180180 }
181-
181+
182182}
183183
184184bootJar. doLast {
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ dependencies {
5050 implementation(" org.yaml:snakeyaml:$snakeyam " )
5151 implementation(" io.jsonwebtoken:jjwt:$jjwtVersion " )
5252 implementation(" org.hibernate.javax.persistence:hibernate-jpa-2.1-api:$hibernateJpa21Api " )
53- implementation(' com.nimbusds:nimbus-jose-jwt:9.37.1 ' )
53+ implementation(' com.nimbusds:nimbus-jose-jwt:9.37.3 ' )
5454
5555
5656 // swagger UI -START
You can’t perform that action at this time.
0 commit comments