Skip to content

Commit 884ccf6

Browse files
fix(deps): update all non-major dependencies (#89)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jan-Hendrik Spahn <jan-hendrik.spahn@soptim.de>
1 parent 0c743a4 commit 884ccf6

12 files changed

Lines changed: 1567 additions & 1609 deletions

.github/workflows/backend-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,18 +69,18 @@ jobs:
6969
git diff --exit-code -- LICENSES-THIRD-PARTY.md
7070
- name: Set up Docker Buildx
7171
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
72-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
72+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
7373
- name: Log in to GHCR
7474
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
75-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
75+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
7676
with:
7777
registry: ghcr.io
7878
username: ${{ github.actor }}
7979
password: ${{ secrets.GITHUB_TOKEN }}
8080
- name: Extract Docker metadata
8181
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
8282
id: meta
83-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
83+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
8484
with:
8585
images: ghcr.io/${{ github.repository }}-backend
8686
tags: |
@@ -94,7 +94,7 @@ jobs:
9494
type=raw,value=main,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
9595
- name: Build and push image
9696
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
97-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
97+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
9898
with:
9999
context: backend
100100
file: backend/Dockerfile

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3737

3838
- name: Setup Node.js
39-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
39+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
4040
with:
4141
node-version: '24'
4242
cache: npm

.github/workflows/frontend-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
fetch-depth: 0
2828
- name: Setup Node.js
29-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
29+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
3030
with:
3131
node-version: "24"
3232
cache: "npm"
@@ -69,18 +69,18 @@ jobs:
6969
run: npm run build
7070
- name: Set up Docker Buildx
7171
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
72-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
72+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
7373
- name: Log in to GHCR
7474
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
75-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
75+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
7676
with:
7777
registry: ghcr.io
7878
username: ${{ github.actor }}
7979
password: ${{ secrets.GITHUB_TOKEN }}
8080
- name: Extract Docker metadata
8181
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
8282
id: meta
83-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
83+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
8484
with:
8585
images: ghcr.io/${{ github.repository }}-frontend
8686
tags: |
@@ -94,7 +94,7 @@ jobs:
9494
type=raw,value=main,enable=${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
9595
- name: Build and push image
9696
if: github.event_name == 'push' && (github.ref == format('refs/heads/{0}', github.event.repository.default_branch) || startsWith(github.ref, 'refs/tags/'))
97-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
97+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
9898
with:
9999
context: frontend
100100
file: frontend/Dockerfile

.github/workflows/publish-test-images.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
fetch-depth: 0
2121
- name: Setup Node.js
22-
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
22+
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
2323
with:
2424
node-version: "24"
2525
cache: "npm"
@@ -37,22 +37,22 @@ jobs:
3737
PUBLIC_REPOSITORY_URL: ${{ env.PUBLIC_REPOSITORY_URL }}
3838
run: npm run build
3939
- name: Set up Docker Buildx
40-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
40+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
4141
- name: Log in to GHCR
42-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
42+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
4343
with:
4444
registry: ghcr.io
4545
username: ${{ github.actor }}
4646
password: ${{ secrets.GITHUB_TOKEN }}
4747
- name: Extract Docker metadata
4848
id: meta
49-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
49+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
5050
with:
5151
images: ghcr.io/${{ github.repository }}-frontend
5252
tags: |
5353
type=raw,value=test
5454
- name: Build and push image
55-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
55+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
5656
with:
5757
context: frontend
5858
file: frontend/Dockerfile
@@ -86,22 +86,22 @@ jobs:
8686
- name: Package
8787
run: mvn -B -DskipTests package
8888
- name: Set up Docker Buildx
89-
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
89+
uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4.1.0
9090
- name: Log in to GHCR
91-
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
91+
uses: docker/login-action@650006c6eb7dba73a995cc03b0b2d7f5ca915bee # v4.2.0
9292
with:
9393
registry: ghcr.io
9494
username: ${{ github.actor }}
9595
password: ${{ secrets.GITHUB_TOKEN }}
9696
- name: Extract Docker metadata
9797
id: meta
98-
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
98+
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6.1.0
9999
with:
100100
images: ghcr.io/${{ github.repository }}-backend
101101
tags: |
102102
type=raw,value=test
103103
- name: Build and push image
104-
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
104+
uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
105105
with:
106106
context: backend
107107
file: backend/Dockerfile

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ COPY src ./src
1010
RUN mvn clean package -DskipTests
1111

1212
# ---------- Runtime stage ----------
13-
FROM eclipse-temurin:25.0.2_10-jre
13+
FROM eclipse-temurin:25.0.3_9-jre
1414

1515
ARG APP_VERSION=""
1616

backend/LICENSES-THIRD-PARTY.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@
1414

1515
### Apache Jena - Extras - Query Builder
1616
- **Package:** org.apache.jena
17-
- **Version:** 6.0.0
17+
- **Version:** 6.1.0
1818
- **License:** Apache License 2.0
1919
- **URL:** [https://jena.apache.org/jena-querybuilder/](https://jena.apache.org/jena-querybuilder/)
2020

2121
### Apache Jena - Libraries POM
2222
- **Package:** org.apache.jena
23-
- **Version:** 6.0.0
23+
- **Version:** 6.1.0
2424
- **License:** Apache License 2.0
2525
- **URL:** [https://jena.apache.org/apache-jena-libs/](https://jena.apache.org/apache-jena-libs/)
2626

@@ -50,43 +50,43 @@
5050

5151
### spring-boot-starter
5252
- **Package:** org.springframework.boot
53-
- **Version:** 4.0.5
53+
- **Version:** 4.0.6
5454
- **License:** Apache License 2.0
5555
- **URL:** [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot)
5656

5757
### spring-boot-starter-log4j2
5858
- **Package:** org.springframework.boot
59-
- **Version:** 4.0.5
59+
- **Version:** 4.0.6
6060
- **License:** Apache License 2.0
6161
- **URL:** [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot)
6262

6363
### spring-boot-starter-test
6464
- **Package:** org.springframework.boot
65-
- **Version:** 4.0.5
65+
- **Version:** 4.0.6
6666
- **License:** Apache License 2.0
6767
- **URL:** [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot)
6868

6969
### spring-boot-starter-thymeleaf
7070
- **Package:** org.springframework.boot
71-
- **Version:** 4.0.5
71+
- **Version:** 4.0.6
7272
- **License:** Apache License 2.0
7373
- **URL:** [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot)
7474

7575
### spring-boot-starter-webflux
7676
- **Package:** org.springframework.boot
77-
- **Version:** 4.0.5
77+
- **Version:** 4.0.6
7878
- **License:** Apache License 2.0
7979
- **URL:** [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot)
8080

8181
### spring-boot-starter-webmvc
8282
- **Package:** org.springframework.boot
83-
- **Version:** 4.0.5
83+
- **Version:** 4.0.6
8484
- **License:** Apache License 2.0
8585
- **URL:** [https://spring.io/projects/spring-boot](https://spring.io/projects/spring-boot)
8686

8787
### spring-session-core
8888
- **Package:** org.springframework.session
89-
- **Version:** 4.0.2
89+
- **Version:** 4.0.3
9090
- **License:** Apache License 2.0
9191
- **URL:** [https://spring.io/projects/spring-session](https://spring.io/projects/spring-session)
9292

@@ -104,7 +104,7 @@
104104

105105
### Project Lombok
106106
- **Package:** org.projectlombok
107-
- **Version:** 1.18.44
107+
- **Version:** 1.18.46
108108
- **License:** MIT License
109109
- **URL:** [https://projectlombok.org](https://projectlombok.org)
110110

backend/pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,18 @@
2828
<maven.compiler.release>25</maven.compiler.release>
2929
<maven-compiler-plugin.version>3.15.0</maven-compiler-plugin.version>
3030
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
31-
<surefire-plugin.version>3.5.5</surefire-plugin.version> <!-- 3.3.0 -->
31+
<surefire-plugin.version>3.5.6</surefire-plugin.version> <!-- 3.3.0 -->
3232
<jacoco.version>0.8.14</jacoco.version> <!-- 0.8.12 -->
3333
<git-commit-id-maven-plugin.version>10.0.0</git-commit-id-maven-plugin.version>
3434
<mycila-license-plugin.version>5.0.0</mycila-license-plugin.version>
35-
<spotless-maven-plugin.version>3.4.0</spotless-maven-plugin.version>
35+
<spotless-maven-plugin.version>3.5.1</spotless-maven-plugin.version>
3636
<google-java-format.version>1.35.0</google-java-format.version>
3737
<maven-checkstyle-plugin.version>3.6.0</maven-checkstyle-plugin.version>
38-
<checkstyle.version>13.4.0</checkstyle.version>
38+
<checkstyle.version>13.4.2</checkstyle.version>
3939
<spotbugs-maven-plugin.version>4.9.8.3</spotbugs-maven-plugin.version>
4040
<org.mapstruct.version>1.6.3</org.mapstruct.version>
4141
<lombok-mapstruct-binding.version>0.2.0</lombok-mapstruct-binding.version>
42-
<lombok.version>1.18.44</lombok.version>
42+
<lombok.version>1.18.46</lombok.version>
4343
</properties>
4444
<build>
4545
<plugins>
@@ -318,19 +318,19 @@
318318
<parent>
319319
<groupId>org.springframework.boot</groupId>
320320
<artifactId>spring-boot-starter-parent</artifactId>
321-
<version>4.0.5</version>
321+
<version>4.0.6</version>
322322
</parent>
323323
<dependencies>
324324
<dependency>
325325
<groupId>org.apache.jena</groupId>
326326
<artifactId>apache-jena-libs</artifactId>
327327
<type>pom</type>
328-
<version>6.0.0</version>
328+
<version>6.1.0</version>
329329
</dependency>
330330
<dependency>
331331
<groupId>org.apache.jena</groupId>
332332
<artifactId>jena-querybuilder</artifactId>
333-
<version>6.0.0</version>
333+
<version>6.1.0</version>
334334
</dependency>
335335
<dependency>
336336
<groupId>org.apache.commons</groupId>
@@ -352,7 +352,7 @@
352352
<dependency>
353353
<groupId>org.springframework.boot</groupId>
354354
<artifactId>spring-boot-starter-webflux</artifactId>
355-
<version>4.0.5</version>
355+
<version>4.0.6</version>
356356
</dependency>
357357
<dependency>
358358
<groupId>org.springframework.boot</groupId>
@@ -371,7 +371,7 @@
371371
<dependency>
372372
<groupId>org.springframework.boot</groupId>
373373
<artifactId>spring-boot-starter-test</artifactId>
374-
<version>4.0.5</version>
374+
<version>4.0.6</version>
375375
</dependency>
376376

377377
<dependency>
@@ -401,7 +401,7 @@
401401
<dependency>
402402
<groupId>org.projectlombok</groupId>
403403
<artifactId>lombok</artifactId>
404-
<version>1.18.44</version>
404+
<version>1.18.46</version>
405405
<scope>provided</scope>
406406
</dependency>
407407

0 commit comments

Comments
 (0)