Have springboot project in which wanted to either exclude snakeyaml 1.30 or upgrade it 1.31 inorder to avoid fortify issue reporting
with snakeyaml 1.30 version there is security vulnerability
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.7.3</version>
</parent>
Below is seen on the effective pom.xml of the project
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>1.30</version>
<scope>compile</scope>
</dependency>
Is there any possibility to upgrade as the remediation says to upgrade the version to snakeyaml 1.31 ?
Ref : https://security.snyk.io/vuln/SNYK-JAVA-ORGYAML-2806360