Skip to content

Commit cc2fe7b

Browse files
fix(deps): update all minor dependencies
1 parent d41b20f commit cc2fe7b

File tree

10 files changed

+109
-49
lines changed

10 files changed

+109
-49
lines changed

.github/workflows/pr-validity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Find git tag
3333
if: ${{ github.base_ref == 'main' || github.base_ref == 'develop' }}
34-
uses: mukunku/tag-exists-action@v1.6.0
34+
uses: mukunku/tag-exists-action@5c39604fe8aef7e65acb6fbcf96ec580f7680313 # v1.7.0
3535
id: check-tag-exists
3636
with:
3737
tag: ${{ steps.version.outputs.version }}

.github/workflows/release-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Print version
2121
run: echo ${{ steps.version.outputs.version }}
2222

23-
- uses: mukunku/tag-exists-action@v1.6.0
23+
- uses: mukunku/tag-exists-action@5c39604fe8aef7e65acb6fbcf96ec580f7680313 # v1.7.0
2424
name: Check tag existence
2525
id: check-tag-exists
2626
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Print source version
2727
run: echo ${{ steps.version-step.outputs.version }}
2828

29-
- uses: mukunku/tag-exists-action@v1.6.0
29+
- uses: mukunku/tag-exists-action@5c39604fe8aef7e65acb6fbcf96ec580f7680313 # v1.7.0
3030
name: Check tag existence
3131
id: check-tag-exists
3232
with:

.github/workflows/snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Print version
3232
run: echo ${{ steps.version.outputs.version }}
3333

34-
- uses: mukunku/tag-exists-action@v1.6.0
34+
- uses: mukunku/tag-exists-action@5c39604fe8aef7e65acb6fbcf96ec580f7680313 # v1.7.0
3535
name: Check tag existence
3636
id: check-tag-exists
3737
with:
Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,3 @@
1-
# Licensed to the Apache Software Foundation (ASF) under one
2-
# or more contributor license agreements. See the NOTICE file
3-
# distributed with this work for additional information
4-
# regarding copyright ownership. The ASF licenses this file
5-
# to you under the Apache License, Version 2.0 (the
6-
# "License"); you may not use this file except in compliance
7-
# with the License. You may obtain a copy of the License at
8-
#
9-
# http://www.apache.org/licenses/LICENSE-2.0
10-
#
11-
# Unless required by applicable law or agreed to in writing,
12-
# software distributed under the License is distributed on an
13-
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14-
# KIND, either express or implied. See the License for the
15-
# specific language governing permissions and limitations
16-
# under the License.
17-
wrapperVersion=3.3.2
1+
wrapperVersion=3.3.4
182
distributionType=only-script
19-
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.11/apache-maven-3.9.11-bin.zip
3+
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.12/apache-maven-3.9.12-bin.zip

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM eclipse-temurin:21.0.8_9-jre-alpine@sha256:4ca7eff3ab0ef9b41f5fefa35efaeda9ed8d26e161e1192473b24b3a6c348aef
1+
FROM eclipse-temurin:21.0.10_7-jre-alpine@sha256:6ad8ed080d9be96b61438ec3ce99388e294af216ed57356000c06070e85c5d5d
22

33
WORKDIR /opt/app/
44
COPY ./target/*.jar /opt/app/app.jar

compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
pearl-db:
3-
image: postgres:14.15
3+
image: postgres:14.20@sha256:062b02051873a101837543675b5b4601cba06b1972d22f4b7969adbde5a280e4
44
environment:
55
- POSTGRES_USER=${PEARL_DB_USER}
66
- POSTGRES_PASSWORD=${PEARL_DB_PASSWORD}

mvnw

Lines changed: 43 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mvnw.cmd

Lines changed: 48 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,25 @@
77

88
<groupId>fr.insee.pearljam</groupId>
99
<artifactId>pearljam-back-office</artifactId>
10-
<version>5.13.6</version>
10+
<version>5.13.7</version>
1111
<name>Pearl-Jam-Back-Office</name>
1212
<description>Back-office services for PearlJam</description>
1313

1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>3.5.5</version>
17+
<version>3.5.10</version>
1818
<relativePath /><!-- lookup parent from repository -->
1919
</parent>
2020

2121
<properties>
2222
<java.version>21</java.version>
2323
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2424
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
25-
<postgresql.version>42.7.7</postgresql.version>
25+
<postgresql.version>42.7.9</postgresql.version>
2626
<sonar.organization>inseefr</sonar.organization>
2727
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
28-
<cucumber.version>7.21.1</cucumber.version>
28+
<cucumber.version>7.34.2</cucumber.version>
2929
</properties>
3030

3131
<dependencies>
@@ -49,7 +49,7 @@
4949
<dependency>
5050
<groupId>org.springdoc</groupId>
5151
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
52-
<version>2.8.9</version>
52+
<version>2.8.15</version>
5353
</dependency>
5454

5555
<!-- Security -->
@@ -120,7 +120,7 @@
120120
<dependency>
121121
<groupId>commons-validator</groupId>
122122
<artifactId>commons-validator</artifactId>
123-
<version>1.10.0</version>
123+
<version>1.10.1</version>
124124
</dependency>
125125

126126
<dependency>
@@ -169,7 +169,7 @@
169169
<plugin>
170170
<groupId>org.jacoco</groupId>
171171
<artifactId>jacoco-maven-plugin</artifactId>
172-
<version>0.8.13</version>
172+
<version>0.8.14</version>
173173
<executions>
174174
<execution>
175175
<id>prepare-agent</id>
@@ -229,7 +229,7 @@
229229
<plugin>
230230
<groupId>org.apache.maven.plugins</groupId>
231231
<artifactId>maven-compiler-plugin</artifactId>
232-
<version>3.14.0</version>
232+
<version>3.15.0</version>
233233
<configuration>
234234
<source>${java.version}</source>
235235
<target>${java.version}</target>
@@ -254,7 +254,7 @@
254254
<dependency>
255255
<groupId>jakarta.xml.bind</groupId>
256256
<artifactId>jakarta.xml.bind-api</artifactId>
257-
<version>4.0.2</version>
257+
<version>4.0.4</version>
258258
</dependency>
259259
<dependency>
260260
<groupId>org.springframework.boot</groupId>
@@ -281,7 +281,7 @@
281281
<plugin>
282282
<groupId>org.apache.maven.plugins</groupId>
283283
<artifactId>maven-surefire-plugin</artifactId>
284-
<version>3.5.3</version>
284+
<version>3.5.4</version>
285285
<configuration>
286286
<includes>
287287
<include>**/TestAuthKeyCloak</include>

0 commit comments

Comments
 (0)