Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit e9fc328

Browse files
open-schnickrenovate[bot]renovate-botsnyk-bot
authored
Update Dependencies (#110)
* Update dependency org.springframework.security:spring-security-crypto to v5.4.6 (#109) Co-authored-by: Renovate Bot <[email protected]> * Update dependency org.jacoco:jacoco-maven-plugin to v0.8.7 (#104) Co-authored-by: Renovate Bot <[email protected]> * Update dependency org.sonarsource.scanner.maven:sonar-maven-plugin to v3.9.0.2155 (#103) Co-authored-by: Renovate Bot <[email protected]> * fix: pom.xml to reduce vulnerabilities (#102) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JAVA-COMMONSIO-1277109 * Update spring boot to v2.4.5 (#101) Co-authored-by: Renovate Bot <[email protected]> * Update cucumber.version to v6.10.4 (#99) Co-authored-by: Renovate Bot <[email protected]> * Update dependency org.springdoc:springdoc-openapi-ui to v1.5.8 (#96) Co-authored-by: Renovate Bot <[email protected]> * Update actions/setup-java action to v2 (#95) * Update actions/setup-java action to v2 * added distribution key to workflows Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: open-schnick <[email protected]> * Update dependency org.mockito:mockito-inline to v3.10.0 (#88) Co-authored-by: Renovate Bot <[email protected]> * Update dependency org.mockito:mockito-core to v3.10.0 (#87) Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Renovate Bot <[email protected]> Co-authored-by: Snyk bot <[email protected]>
1 parent 149e3ac commit e9fc328

File tree

6 files changed

+19
-14
lines changed

6 files changed

+19
-14
lines changed

.github/workflows/featureRelease.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ jobs:
1717
uses: actions/checkout@v2
1818
-
1919
name: Set up JDK
20-
uses: actions/setup-java@v1
20+
uses: actions/setup-java@v2
2121
with:
2222
java-version: '11.0.8'
23+
distribution: 'adopt'
2324
architecture: x64
2425
-
2526
name: Build Docker Image

.github/workflows/featureTests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ jobs:
1717
steps:
1818
- uses: actions/checkout@v2
1919
- name: Set up JDK
20-
uses: actions/setup-java@v1
20+
uses: actions/setup-java@v2
2121
with:
2222
java-version: '11.0.8'
23+
distribution: 'adopt'
2324
architecture: x64
2425
- name: Run Tests
2526
run: |

.github/workflows/latestRelease.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ jobs:
1717
uses: actions/checkout@v2
1818
-
1919
name: Set up JDK
20-
uses: actions/setup-java@v1
20+
uses: actions/setup-java@v2
2121
with:
2222
java-version: '11.0.8'
23+
distribution: 'adopt'
2324
architecture: x64
2425
-
2526
name: Build Docker Image

.github/workflows/masterTests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ jobs:
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Set up JDK
19-
uses: actions/setup-java@v1
19+
uses: actions/setup-java@v2
2020
with:
2121
java-version: '11.0.8'
22+
distribution: 'adopt'
2223
architecture: x64
2324
- name: Run Tests and update Sonar
2425
run: |

.github/workflows/stableRelease.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ jobs:
1212
uses: actions/checkout@v2
1313
-
1414
name: Set up JDK
15-
uses: actions/setup-java@v1
15+
uses: actions/setup-java@v2
1616
with:
1717
java-version: '11.0.8'
18+
distribution: 'adopt'
1819
architecture: x64
1920
-
2021
name: Build Docker Image

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.boot</groupId>
77
<artifactId>spring-boot-starter-parent</artifactId>
8-
<version>2.4.4</version>
8+
<version>2.4.5</version>
99
<relativePath/> <!-- lookup parent from repository -->
1010
</parent>
1111
<groupId>de.filefighter</groupId>
@@ -16,7 +16,7 @@
1616

1717
<properties>
1818
<java.version>11</java.version>
19-
<cucumber.version>6.10.2</cucumber.version>
19+
<cucumber.version>6.10.4</cucumber.version>
2020
<sonar.coverage.exclusions>**/data/**/*.java,**/configuration/*.java,**/exceptions/*.java
2121
</sonar.coverage.exclusions>
2222
</properties>
@@ -42,13 +42,13 @@
4242
<dependency>
4343
<groupId>org.springframework.boot</groupId>
4444
<artifactId>spring-boot</artifactId>
45-
<version>2.4.4</version>
45+
<version>2.4.5</version>
4646
</dependency>
4747

4848
<dependency>
4949
<groupId>org.springframework.security</groupId>
5050
<artifactId>spring-security-crypto</artifactId>
51-
<version>5.3.4.RELEASE</version>
51+
<version>5.4.6</version>
5252
</dependency>
5353

5454
<dependency>
@@ -61,7 +61,7 @@
6161
<dependency>
6262
<groupId>org.springdoc</groupId>
6363
<artifactId>springdoc-openapi-ui</artifactId>
64-
<version>1.5.6</version>
64+
<version>1.5.8</version>
6565
</dependency>
6666

6767
<!-- running script plugin -->
@@ -86,12 +86,12 @@
8686
<dependency>
8787
<groupId>org.mockito</groupId>
8888
<artifactId>mockito-core</artifactId>
89-
<version>3.8.0</version>
89+
<version>3.10.0</version>
9090
</dependency>
9191
<dependency>
9292
<groupId>org.mockito</groupId>
9393
<artifactId>mockito-inline</artifactId>
94-
<version>3.8.0</version>
94+
<version>3.10.0</version>
9595
</dependency>
9696
<dependency>
9797
<groupId>org.jetbrains</groupId>
@@ -175,12 +175,12 @@
175175
<plugin>
176176
<groupId>org.sonarsource.scanner.maven</groupId>
177177
<artifactId>sonar-maven-plugin</artifactId>
178-
<version>3.8.0.2131</version>
178+
<version>3.9.0.2155</version>
179179
</plugin>
180180
<plugin>
181181
<groupId>org.jacoco</groupId>
182182
<artifactId>jacoco-maven-plugin</artifactId>
183-
<version>0.8.6</version>
183+
<version>0.8.7</version>
184184
<configuration>
185185
<excludes>
186186
<exclude>de/filefighter/rest/domain/**/data/**/*.class</exclude>

0 commit comments

Comments
 (0)