Skip to content

Commit

Permalink
chore(security): Upgrading Tomcat to latest minor release 9.0.85 #26722
Browse files Browse the repository at this point in the history
… (#27512)

* sec(core) #26722 : Upgrading Tomcat to latest minor release 9.0.85

* Update server.xml

Removing XML comment from debug process, reported via Code Review.
  • Loading branch information
jcastro-dotcms authored Feb 8, 2024
1 parent 181a067 commit 1e4a957
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/maven-build-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,13 @@ jobs:
- name: Set Common Vars
id: set-common-vars
run: |
build_properties=${DOCKER_BUILD_CONTEXT}/context/maven/dotserver/tomcat-9.0.60/webapps/ROOT/WEB-INF/classes/build.properties
if [[ ! -f ${build_properties} ]]; then
build_properties_path=${DOCKER_BUILD_CONTEXT}/context/maven/dotserver/tomcat-*/webapps/ROOT/WEB-INF/classes/build.properties
build_properties=''
if ! ls ${build_properties_path} 1> /dev/null 2>&1; then
echo 'Could not find build.properties, aborting'
exit 1
else
build_properties=$(eval find "$build_properties_path" -print)
fi
echo 'Build properties:'
Expand Down
2 changes: 1 addition & 1 deletion dotCMS/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<clean.docker.volumes>false</clean.docker.volumes>
<!-- Tomcat -->
<tomcat.version>9.0.60</tomcat.version>
<tomcat.version>9.0.85</tomcat.version>
<enableDebug>true</enableDebug>
<debugPort>8000</debugPort>
<debugHost>localhost</debugHost>
Expand Down
2 changes: 1 addition & 1 deletion dotcms-postman/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<version>1.0.0-SNAPSHOT</version>

<properties>
<tomcat.version>9.0.60</tomcat.version>
<tomcat.version>9.0.85</tomcat.version>
<db.port>5432</db.port>
<es.port>9200</es.port>
<tomcat.port>8080</tomcat.port>
Expand Down

0 comments on commit 1e4a957

Please sign in to comment.