Skip to content

Commit 4d13c87

Browse files
fix(deps): update all dependencies
1 parent 7ebc881 commit 4d13c87

File tree

8 files changed

+43
-43
lines changed

8 files changed

+43
-43
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Check out repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- name: Set up JDK
19-
uses: actions/setup-java@v4
19+
uses: actions/setup-java@v5
2020
with:
2121
check-latest: true
2222
distribution: temurin
@@ -43,7 +43,7 @@ jobs:
4343
runs-on: ubuntu-latest
4444
steps:
4545
- name: Check out repository
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747
- name: Set up cache
4848
uses: actions/cache@v4
4949
env:
@@ -60,7 +60,7 @@ jobs:
6060
# Publish snapshot
6161
- name: Set up JDK 11 for publishing a snapshot
6262
if: github.event_name == 'push' && endswith(env.PROJECT_VERSION, 'SNAPSHOT')
63-
uses: actions/setup-java@v4
63+
uses: actions/setup-java@v5
6464
with:
6565
check-latest: true
6666
distribution: temurin
@@ -77,7 +77,7 @@ jobs:
7777
# Publish release
7878
- name: Set up JDK 11 for publishing a release
7979
if: github.event_name == 'release' && !endswith(env.PROJECT_VERSION, 'SNAPSHOT')
80-
uses: actions/setup-java@v4
80+
uses: actions/setup-java@v5
8181
with:
8282
check-latest: true
8383
distribution: temurin

dc-commons-file/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<dependency>
4343
<groupId>org.junit.jupiter</groupId>
4444
<artifactId>junit-jupiter</artifactId>
45-
<version>5.10.1</version>
45+
<version>6.0.0</version>
4646
<scope>test</scope>
4747
</dependency>
4848
<dependency>
@@ -54,35 +54,35 @@
5454
<dependency>
5555
<groupId>org.slf4j</groupId>
5656
<artifactId>slf4j-api</artifactId>
57-
<version>1.7.36</version>
57+
<version>2.0.17</version>
5858
</dependency>
5959
<dependency>
6060
<groupId>org.slf4j</groupId>
6161
<artifactId>slf4j-simple</artifactId>
62-
<version>1.7.36</version>
62+
<version>2.0.17</version>
6363
<scope>test</scope>
6464
</dependency>
6565
<dependency>
6666
<groupId>org.springframework.boot</groupId>
6767
<artifactId>spring-boot</artifactId>
68-
<version>2.3.12.RELEASE</version>
68+
<version>3.5.6</version>
6969
</dependency>
7070
<dependency>
7171
<groupId>org.springframework.boot</groupId>
7272
<artifactId>spring-boot-configuration-processor</artifactId>
73-
<version>2.3.12.RELEASE</version>
73+
<version>3.5.6</version>
7474
<optional>true</optional>
7575
</dependency>
7676
<dependency>
7777
<groupId>org.springframework.boot</groupId>
7878
<artifactId>spring-boot-test</artifactId>
79-
<version>2.3.12.RELEASE</version>
79+
<version>3.5.6</version>
8080
<scope>test</scope>
8181
</dependency>
8282
<dependency>
8383
<groupId>org.springframework</groupId>
8484
<artifactId>spring-test</artifactId>
85-
<version>5.2.22.RELEASE</version>
85+
<version>6.2.12</version>
8686
<scope>test</scope>
8787
</dependency>
8888
<dependency>

dc-commons-server/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dependency>
2424
<groupId>com.maxmind.geoip2</groupId>
2525
<artifactId>geoip2</artifactId>
26-
<version>2.14.0</version>
26+
<version>4.4.0</version>
2727
<exclusions>
2828
<exclusion>
2929
<groupId>com.fasterxml.jackson.core</groupId>
@@ -45,18 +45,18 @@
4545
<dependency>
4646
<groupId>org.junit.jupiter</groupId>
4747
<artifactId>junit-jupiter</artifactId>
48-
<version>5.10.1</version>
48+
<version>6.0.0</version>
4949
<scope>test</scope>
5050
</dependency>
5151
<dependency>
5252
<groupId>org.slf4j</groupId>
5353
<artifactId>slf4j-api</artifactId>
54-
<version>1.7.36</version>
54+
<version>2.0.17</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>org.slf4j</groupId>
5858
<artifactId>slf4j-simple</artifactId>
59-
<version>1.7.36</version>
59+
<version>2.0.17</version>
6060
<scope>test</scope>
6161
</dependency>
6262
</dependencies>

dc-commons-springboot/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<url>https://github.com/dbmdz/digitalcollections-commons/tree/main/dc-commons-springboot</url>
1616

1717
<properties>
18-
<version.junit>5.10.1</version.junit>
18+
<version.junit>6.0.0</version.junit>
1919
</properties>
2020

2121
<dependencies>
@@ -71,33 +71,33 @@
7171
<dependency>
7272
<groupId>org.slf4j</groupId>
7373
<artifactId>slf4j-api</artifactId>
74-
<version>1.7.36</version>
74+
<version>2.0.17</version>
7575
</dependency>
7676
<dependency>
7777
<groupId>org.springframework</groupId>
7878
<artifactId>spring-beans</artifactId>
79-
<version>5.2.22.RELEASE</version>
79+
<version>6.2.12</version>
8080
</dependency>
8181
<dependency>
8282
<groupId>org.springframework</groupId>
8383
<artifactId>spring-context</artifactId>
84-
<version>5.2.22.RELEASE</version>
84+
<version>6.2.12</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>org.springframework</groupId>
8888
<artifactId>spring-test</artifactId>
89-
<version>5.2.22.RELEASE</version>
89+
<version>6.2.12</version>
9090
<scope>test</scope>
9191
</dependency>
9292
<dependency>
9393
<groupId>org.springframework.boot</groupId>
9494
<artifactId>spring-boot-actuator</artifactId>
95-
<version>2.7.18</version>
95+
<version>3.5.6</version>
9696
</dependency>
9797
<dependency>
9898
<groupId>org.springframework.boot</groupId>
9999
<artifactId>spring-boot-test</artifactId>
100-
<version>2.3.12.RELEASE</version>
100+
<version>3.5.6</version>
101101
<scope>test</scope>
102102
</dependency>
103103
<dependency>

dc-commons-springdata/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<dependency>
2323
<groupId>org.springframework.data</groupId>
2424
<artifactId>spring-data-commons</artifactId>
25-
<version>2.7.2</version>
25+
<version>3.5.5</version>
2626
</dependency>
2727
</dependencies>
2828
</project>

dc-commons-springmvc/pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
<dependency>
4040
<groupId>org.junit.jupiter</groupId>
4141
<artifactId>junit-jupiter</artifactId>
42-
<version>5.10.1</version>
42+
<version>6.0.0</version>
4343
<scope>test</scope>
4444
</dependency>
4545
<dependency>
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>org.slf4j</groupId>
5353
<artifactId>slf4j-api</artifactId>
54-
<version>1.7.36</version>
54+
<version>2.0.17</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>org.springframework</groupId>
@@ -61,17 +61,17 @@
6161
<dependency>
6262
<groupId>org.springframework</groupId>
6363
<artifactId>spring-webmvc</artifactId>
64-
<version>5.2.22.RELEASE</version>
64+
<version>6.2.12</version>
6565
</dependency>
6666
<dependency>
6767
<groupId>org.springframework.security</groupId>
6868
<artifactId>spring-security-core</artifactId>
69-
<version>5.7.14</version>
69+
<version>6.5.6</version>
7070
</dependency>
7171
<dependency>
7272
<groupId>org.springframework.security</groupId>
7373
<artifactId>spring-security-web</artifactId>
74-
<version>5.7.13</version>
74+
<version>6.5.6</version>
7575
</dependency>
7676
<dependency>
7777
<groupId>org.thymeleaf</groupId>

dc-commons-springsecurity/pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>org.junit.jupiter</groupId>
5151
<artifactId>junit-jupiter</artifactId>
52-
<version>5.10.1</version>
52+
<version>6.0.0</version>
5353
<scope>test</scope>
5454
</dependency>
5555
<dependency>
@@ -61,23 +61,23 @@
6161
<dependency>
6262
<groupId>org.slf4j</groupId>
6363
<artifactId>slf4j-api</artifactId>
64-
<version>1.7.36</version>
64+
<version>2.0.17</version>
6565
</dependency>
6666
<dependency>
6767
<groupId>org.slf4j</groupId>
6868
<artifactId>slf4j-simple</artifactId>
69-
<version>1.7.36</version>
69+
<version>2.0.17</version>
7070
<scope>test</scope>
7171
</dependency>
7272
<dependency>
7373
<groupId>org.springframework</groupId>
7474
<artifactId>spring-context</artifactId>
75-
<version>5.2.22.RELEASE</version>
75+
<version>6.2.12</version>
7676
</dependency>
7777
<dependency>
7878
<groupId>org.springframework</groupId>
7979
<artifactId>spring-test</artifactId>
80-
<version>5.2.22.RELEASE</version>
80+
<version>6.2.12</version>
8181
</dependency>
8282
<dependency>
8383
<groupId>org.springframework</groupId>
@@ -87,40 +87,40 @@
8787
<dependency>
8888
<groupId>org.springframework</groupId>
8989
<artifactId>spring-webmvc</artifactId>
90-
<version>5.2.22.RELEASE</version>
90+
<version>6.2.12</version>
9191
<scope>test</scope>
9292
</dependency>
9393
<dependency>
9494
<groupId>org.springframework.boot</groupId>
9595
<artifactId>spring-boot</artifactId>
96-
<version>2.3.12.RELEASE</version>
96+
<version>3.5.6</version>
9797
</dependency>
9898
<dependency>
9999
<groupId>org.springframework.boot</groupId>
100100
<artifactId>spring-boot-test</artifactId>
101-
<version>2.3.12.RELEASE</version>
101+
<version>3.5.6</version>
102102
<scope>test</scope>
103103
</dependency>
104104
<dependency>
105105
<groupId>org.springframework.boot</groupId>
106106
<artifactId>spring-boot-test-autoconfigure</artifactId>
107-
<version>2.3.12.RELEASE</version>
107+
<version>3.5.6</version>
108108
<scope>test</scope>
109109
</dependency>
110110
<dependency>
111111
<groupId>org.springframework.security</groupId>
112112
<artifactId>spring-security-config</artifactId>
113-
<version>5.4.10</version>
113+
<version>6.5.6</version>
114114
</dependency>
115115
<dependency>
116116
<groupId>org.springframework.security</groupId>
117117
<artifactId>spring-security-core</artifactId>
118-
<version>5.7.14</version>
118+
<version>6.5.6</version>
119119
</dependency>
120120
<dependency>
121121
<groupId>org.springframework.security</groupId>
122122
<artifactId>spring-security-web</artifactId>
123-
<version>5.7.13</version>
123+
<version>6.5.6</version>
124124
</dependency>
125125
<dependency>
126126
<groupId>org.yaml</groupId>

dc-commons-web/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<dependency>
1919
<groupId>com.ibm.icu</groupId>
2020
<artifactId>icu4j</artifactId>
21-
<version>72.1</version>
21+
<version>77.1</version>
2222
</dependency>
2323
<dependency>
2424
<groupId>org.assertj</groupId>
@@ -29,7 +29,7 @@
2929
<dependency>
3030
<groupId>org.junit.jupiter</groupId>
3131
<artifactId>junit-jupiter</artifactId>
32-
<version>5.10.1</version>
32+
<version>6.0.0</version>
3333
<scope>test</scope>
3434
</dependency>
3535
</dependencies>

0 commit comments

Comments
 (0)