File tree Expand file tree Collapse file tree 3 files changed +15
-13
lines changed Expand file tree Collapse file tree 3 files changed +15
-13
lines changed Original file line number Diff line number Diff line change 7
7
build-publish :
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v2
10
+ - uses : actions/checkout@v4
11
11
- name : Build and push Docker images
12
- uses : docker/build-push-action@v1.1 .0
12
+ uses : docker/build-push-action@v6.10 .0
13
13
with :
14
14
username : ${{ secrets.DOCKER_USERNAME }}
15
15
password : ${{ secrets.DOCKER_PASSWORD }}
Original file line number Diff line number Diff line change 6
6
build :
7
7
runs-on : ubuntu-latest
8
8
steps :
9
- - uses : actions/checkout@v2
9
+ - uses : actions/checkout@v4
10
10
- name : Set up JDK 17
11
- uses : actions/setup-java@v1
11
+ uses : actions/setup-java@v4
12
12
with :
13
+ distribution : ' temurin'
13
14
java-version : 17
14
15
- name : Cache Maven packages
15
- uses : actions/cache@v1
16
+ uses : actions/cache@v4
16
17
with :
17
18
path : ~/.m2
18
19
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -24,21 +25,22 @@ jobs:
24
25
needs : [build]
25
26
if : ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
26
27
steps :
27
- - uses : actions/checkout@v2
28
+ - uses : actions/checkout@v4
28
29
- name : Set up JDK 17
29
- uses : actions/setup-java@v1
30
+ uses : actions/setup-java@v4
30
31
with :
32
+ distribution : ' temurin'
31
33
java-version : 17
32
34
- name : Cache Maven packages
33
- uses : actions/cache@v1
35
+ uses : actions/cache@v4
34
36
with :
35
37
path : ~/.m2
36
38
key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
37
39
restore-keys : ${{ runner.os }}-m2
38
40
- name : Docker Login
39
41
# You may pin to the exact commit or the version.
40
42
# uses: docker/login-action@f3364599c6aa293cdc2b8391b1b56d0c30e45c8a
41
- uses : docker/login-action@v1.8 .0
43
+ uses : docker/login-action@v3.3 .0
42
44
with :
43
45
username : ${{ secrets.DOCKER_USERNAME }}
44
46
password : ${{ secrets.DOCKER_PASSWORD }}
Original file line number Diff line number Diff line change 19
19
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
20
20
<maven .compiler.source>17</maven .compiler.source>
21
21
<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>
23
23
<quarkus .platform.artifact-id>quarkus-bom</quarkus .platform.artifact-id>
24
24
<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>
27
27
<org .mockito.version>3.3.3</org .mockito.version>
28
28
<quarkus .container-image.build>true</quarkus .container-image.build>
29
29
<quarkus .container-image.group>viplab</quarkus .container-image.group>
56
56
<dependency >
57
57
<groupId >com.fasterxml.jackson</groupId >
58
58
<artifactId >jackson-bom</artifactId >
59
- <version >2.17 .2</version >
59
+ <version >2.18 .2</version >
60
60
<scope >import</scope >
61
61
<type >pom</type >
62
62
</dependency >
You can’t perform that action at this time.
0 commit comments