Skip to content

Commit 64d9da1

Browse files
authored
Merge pull request #3184 from vmware/jhua/springboot-3.1.12
springboot to 3.1.12 + aws sdk upgrade
2 parents 1454496 + 7f9cc63 commit 64d9da1

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

g11n-ws/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
buildscript {
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

g11n-ws/modules/md-service-authen/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//Copyright 2019-2023 VMware, Inc.
1+
//Copyright 2019-2024 VMware, Inc.
22
//SPDX-License-Identifier: EPL-2.0
33
apply plugin: 'java-library'
44
apply 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

4545
bootJar {

g11n-ws/vip-manager-i18n/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ bootJar {
178178
from ("${baseOutputDir}/html5") {
179179
into 'static/i18n/docs'
180180
}
181-
181+
182182
}
183183

184184
bootJar.doLast {

g11n-ws/vip-manager-l10n/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)