Skip to content

Commit a0297b6

Browse files
committed
Merge remote-tracking branches 'origin/dependabot/maven/io.smallrye.reactive-test-common-4.26.0', 'origin/dependabot/maven/io.quarkus-quarkus-maven-plugin-3.17.5', 'origin/dependabot/maven/io.quarkus-quarkus-bom-3.17.5' and 'origin/dependabot/maven/com.fasterxml.jackson-jackson-bom-2.18.2'
4 parents 25a4b9b + db32d57 + d840db5 + 823fb67 commit a0297b6

File tree

3 files changed

+15
-13
lines changed

3 files changed

+15
-13
lines changed

.github/workflows/docker-build-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
build-publish:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111
- name: Build and push Docker images
12-
uses: docker/build-push-action@v1.1.0
12+
uses: docker/build-push-action@v6.10.0
1313
with:
1414
username: ${{ secrets.DOCKER_USERNAME }}
1515
password: ${{ secrets.DOCKER_PASSWORD }}

.github/workflows/maven.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v2
9+
- uses: actions/checkout@v4
1010
- name: Set up JDK 17
11-
uses: actions/setup-java@v1
11+
uses: actions/setup-java@v4
1212
with:
13+
distribution: 'temurin'
1314
java-version: 17
1415
- name: Cache Maven packages
15-
uses: actions/cache@v1
16+
uses: actions/cache@v4
1617
with:
1718
path: ~/.m2
1819
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -24,21 +25,22 @@ jobs:
2425
needs: [build]
2526
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
2627
steps:
27-
- uses: actions/checkout@v2
28+
- uses: actions/checkout@v4
2829
- name: Set up JDK 17
29-
uses: actions/setup-java@v1
30+
uses: actions/setup-java@v4
3031
with:
32+
distribution: 'temurin'
3133
java-version: 17
3234
- name: Cache Maven packages
33-
uses: actions/cache@v1
35+
uses: actions/cache@v4
3436
with:
3537
path: ~/.m2
3638
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
3739
restore-keys: ${{ runner.os }}-m2
3840
- name: Docker Login
3941
# You may pin to the exact commit or the version.
4042
# uses: docker/login-action@f3364599c6aa293cdc2b8391b1b56d0c30e45c8a
41-
uses: docker/login-action@v1.8.0
43+
uses: docker/login-action@v3.3.0
4244
with:
4345
username: ${{ secrets.DOCKER_USERNAME }}
4446
password: ${{ secrets.DOCKER_PASSWORD }}

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2020
<maven.compiler.source>17</maven.compiler.source>
2121
<maven.compiler.target>17</maven.compiler.target>
22-
<quarkus-plugin.version>3.13.2</quarkus-plugin.version>
22+
<quarkus-plugin.version>3.17.5</quarkus-plugin.version>
2323
<quarkus.platform.artifact-id>quarkus-bom</quarkus.platform.artifact-id>
2424
<quarkus.platform.group-id>io.quarkus</quarkus.platform.group-id>
25-
<quarkus.platform.version>3.13.2</quarkus.platform.version>
26-
<surefire-plugin.version>3.4.0</surefire-plugin.version>
25+
<quarkus.platform.version>3.22.2</quarkus.platform.version>
26+
<surefire-plugin.version>3.5.0</surefire-plugin.version>
2727
<org.mockito.version>3.3.3</org.mockito.version>
2828
<quarkus.container-image.build>true</quarkus.container-image.build>
2929
<quarkus.container-image.group>viplab</quarkus.container-image.group>
@@ -56,7 +56,7 @@
5656
<dependency>
5757
<groupId>com.fasterxml.jackson</groupId>
5858
<artifactId>jackson-bom</artifactId>
59-
<version>2.17.2</version>
59+
<version>2.18.2</version>
6060
<scope>import</scope>
6161
<type>pom</type>
6262
</dependency>

0 commit comments

Comments
 (0)