Compare commits
32 Commits
c55d3e702a
...
renovate/o
| Author | SHA1 | Date | |
|---|---|---|---|
| 32187e8027 | |||
| 6596c248f1 | |||
| f1bbaab518 | |||
| e66b387863 | |||
| 4915d26e5d | |||
| 658f98289d | |||
| e987e91ee4 | |||
| 55b2ccd176 | |||
| c3a7a11de7 | |||
| 1a52cd01d9 | |||
| ea1f3f3154 | |||
| a278b41123 | |||
| 2a7d6db45c | |||
| c319ef42bd | |||
| b1ec39bf28 | |||
| 246a8c322f | |||
| 59d83cea15 | |||
| dd38eb2c8b | |||
| 9c00f85df3 | |||
| d0b2daba1e | |||
| cb77527ac9 | |||
| 045e22eb7e | |||
| df5f23d029 | |||
| 6125ba7328 | |||
| 7646cd5206 | |||
| 3cb1d47d31 | |||
| b0757787d1 | |||
| ef22d2f671 | |||
| deaa0400d4 | |||
| 38d77faf68 | |||
| 2f8ea9a8a6 | |||
| 4aab871d3f |
@@ -8,6 +8,10 @@ trigger:
|
|||||||
event:
|
event:
|
||||||
- push
|
- push
|
||||||
- pull_request
|
- pull_request
|
||||||
|
branch:
|
||||||
|
include:
|
||||||
|
- main
|
||||||
|
- develop
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
# test if it compiles correctly
|
# test if it compiles correctly
|
||||||
|
|||||||
16
pom.xml
16
pom.xml
@@ -13,36 +13,36 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.logging.log4j</groupId>
|
<groupId>org.apache.logging.log4j</groupId>
|
||||||
<artifactId>log4j-api</artifactId>
|
<artifactId>log4j-api</artifactId>
|
||||||
<version>2.25.2</version>
|
<version>2.25.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.apache.logging.log4j</groupId>
|
<groupId>org.apache.logging.log4j</groupId>
|
||||||
<artifactId>log4j-core</artifactId>
|
<artifactId>log4j-core</artifactId>
|
||||||
<version>2.25.2</version>
|
<version>2.25.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Web Dependencies -->
|
<!-- Web Dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-web</artifactId>
|
<artifactId>spring-boot-starter-web</artifactId>
|
||||||
<version>3.5.7</version>
|
<version>3.5.12</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-json</artifactId>
|
<artifactId>spring-boot-starter-json</artifactId>
|
||||||
<version>4.0.3</version>
|
<version>3.5.11</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
||||||
<version>3.5.7</version>
|
<version>3.5.11</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<!-- Security and Auth -->
|
<!-- Security and Auth -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
<artifactId>spring-boot-starter-security</artifactId>
|
<artifactId>spring-boot-starter-security</artifactId>
|
||||||
<version>3.5.7</version>
|
<version>3.5.11</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.jsonwebtoken</groupId>
|
<groupId>io.jsonwebtoken</groupId>
|
||||||
@@ -64,7 +64,7 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.postgresql</groupId>
|
<groupId>org.postgresql</groupId>
|
||||||
<artifactId>postgresql</artifactId>
|
<artifactId>postgresql</artifactId>
|
||||||
<version>42.7.8</version>
|
<version>42.7.10</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.owasp</groupId>
|
<groupId>org.owasp</groupId>
|
||||||
<artifactId>dependency-check-maven</artifactId>
|
<artifactId>dependency-check-maven</artifactId>
|
||||||
<version>12.1.8</version>
|
<version>12.2.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<failBuildOnCVSS>8</failBuildOnCVSS>
|
<failBuildOnCVSS>8</failBuildOnCVSS>
|
||||||
<nvdApiKey>${nvdApiKey}</nvdApiKey>
|
<nvdApiKey>${nvdApiKey}</nvdApiKey>
|
||||||
|
|||||||
Reference in New Issue
Block a user