@@ -16,18 +16,18 @@ jobs:
16
16
steps :
17
17
- uses : actions/checkout@v2
18
18
19
- - uses : actions/setup-node@v2
19
+ - uses : actions/setup-node@v4
20
20
with :
21
21
node-version : " 16"
22
22
23
- - uses : actions/setup-java@v1
23
+ - uses : actions/setup-java@v4
24
24
with :
25
25
java-version : 11
26
26
server-id : openconext-releases
27
27
server-username : MAVEN_USERNAME
28
28
server-password : MAVEN_PASSWORD
29
29
30
- - uses : actions/cache@v1
30
+ - uses : actions/cache@v4
31
31
with :
32
32
path : ~/.m2/repository
33
33
key : ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
51
51
if : github.event_name != 'workflow_dispatch' && steps.versioncheck.outputs.version != github.ref_name
52
52
53
53
- name : Set up JDK 11 for snapshots
54
- uses : actions/setup-java@v3
54
+ uses : actions/setup-java@v4
55
55
with :
56
56
java-version : " 11"
57
57
distribution : " temurin"
62
62
if : ( endsWith(steps.versioncheck.outputs.version, '-SNAPSHOT'))
63
63
64
64
- name : Set up JDK 11 for releases
65
- uses : actions/setup-java@v3
65
+ uses : actions/setup-java@v4
66
66
with :
67
67
java-version : " 11"
68
68
distribution : " temurin"
@@ -79,10 +79,10 @@ jobs:
79
79
MAVEN_PASSWORD : ${{ secrets.BUILD_PASSWORD }}
80
80
81
81
- name : Set up Docker Buildx
82
- uses : docker/setup-buildx-action@v2
82
+ uses : docker/setup-buildx-action@v3
83
83
84
84
- name : Login to GitHub Container Registry
85
- uses : docker/login-action@v2
85
+ uses : docker/login-action@v3
86
86
with :
87
87
registry : ghcr.io
88
88
username : ${{ github.repository_owner }}
@@ -113,7 +113,7 @@ jobs:
113
113
type=sha
114
114
115
115
- name : Build and push the mujina idp image
116
- uses : docker/build-push-action@v4
116
+ uses : docker/build-push-action@v5
117
117
with :
118
118
context : mujina-idp
119
119
file : mujina-idp/docker/Dockerfile
@@ -123,7 +123,7 @@ jobs:
123
123
labels : ${{ steps.meta_idp.outputs.labels }}
124
124
125
125
- name : Build and push the mujina sp image
126
- uses : docker/build-push-action@v4
126
+ uses : docker/build-push-action@v5
127
127
with :
128
128
context : mujina-sp
129
129
file : mujina-sp/docker/Dockerfile
0 commit comments