@@ -31,22 +31,22 @@ jobs:
31
31
32
32
steps :
33
33
- name : Set up Docker Buildx
34
- uses : docker/setup-buildx-action@v2
34
+ uses : docker/setup-buildx-action@v3
35
35
- name : Login to Github Container Registry
36
36
if : env.PUSH == 'true'
37
- uses : docker/login-action@v2
37
+ uses : docker/login-action@v3
38
38
with :
39
39
registry : ghcr.io
40
40
username : ${{ github.repository_owner }}
41
41
password : ${{ secrets.GITHUB_TOKEN }}
42
42
- name : Login to DockerHub
43
43
if : env.PUSH == 'true'
44
- uses : docker/login-action@v2
44
+ uses : docker/login-action@v3
45
45
with :
46
46
username : ${{ secrets.DOCKERHUB_USERNAME }}
47
47
password : ${{ secrets.DOCKERHUB_TOKEN }}
48
48
- name : Build and Push
49
- uses : docker/build-push-action@v3
49
+ uses : docker/build-push-action@v5
50
50
with :
51
51
file : .docker/${{ github.job }}/Dockerfile
52
52
build-args : ROS_DISTRO=${{ matrix.ROS_DISTRO }}
@@ -72,22 +72,22 @@ jobs:
72
72
73
73
steps :
74
74
- name : Set up Docker Buildx
75
- uses : docker/setup-buildx-action@v2
75
+ uses : docker/setup-buildx-action@v3
76
76
- name : Login to Github Container Registry
77
77
if : env.PUSH == 'true'
78
- uses : docker/login-action@v2
78
+ uses : docker/login-action@v3
79
79
with :
80
80
registry : ghcr.io
81
81
username : ${{ github.repository_owner }}
82
82
password : ${{ secrets.GITHUB_TOKEN }}
83
83
- name : Login to DockerHub
84
84
if : env.PUSH == 'true'
85
- uses : docker/login-action@v2
85
+ uses : docker/login-action@v3
86
86
with :
87
87
username : ${{ secrets.DOCKERHUB_USERNAME }}
88
88
password : ${{ secrets.DOCKERHUB_TOKEN }}
89
89
- name : Build and Push
90
- uses : docker/build-push-action@v3
90
+ uses : docker/build-push-action@v5
91
91
with :
92
92
file : .docker/${{ github.job }}/Dockerfile
93
93
build-args : ROS_DISTRO=${{ matrix.ROS_DISTRO }}
98
98
${{ env.DH_IMAGE }}
99
99
100
100
ci-testing :
101
- needs : ci
102
101
strategy :
103
102
fail-fast : false
104
103
matrix :
@@ -114,25 +113,25 @@ jobs:
114
113
115
114
steps :
116
115
- name : Set up Docker Buildx
117
- uses : docker/setup-buildx-action@v2
116
+ uses : docker/setup-buildx-action@v3
118
117
- name : Login to Github Container Registry
119
118
if : env.PUSH == 'true'
120
- uses : docker/login-action@v2
119
+ uses : docker/login-action@v3
121
120
with :
122
121
registry : ghcr.io
123
122
username : ${{ github.repository_owner }}
124
123
password : ${{ secrets.GITHUB_TOKEN }}
125
124
- name : Login to DockerHub
126
125
if : env.PUSH == 'true'
127
- uses : docker/login-action@v2
126
+ uses : docker/login-action@v3
128
127
with :
129
128
username : ${{ secrets.DOCKERHUB_USERNAME }}
130
129
password : ${{ secrets.DOCKERHUB_TOKEN }}
131
130
- name : Build and Push
132
- uses : docker/build-push-action@v3
131
+ uses : docker/build-push-action@v5
133
132
with :
134
133
file : .docker/${{ github.job }}/Dockerfile
135
- build-args : ROS_DISTRO =${{ matrix.ROS_DISTRO }}
134
+ build-args : OUR_ROS_DISTRO =${{ matrix.ROS_DISTRO }}
136
135
push : ${{ env.PUSH }}
137
136
no-cache : true
138
137
tags : |
@@ -155,26 +154,26 @@ jobs:
155
154
PUSH : ${{ (github.event_name != 'pull_request') && (github.repository == 'ros-planning/moveit2') }}
156
155
157
156
steps :
158
- - uses : actions/checkout@v3
157
+ - uses : actions/checkout@v4
159
158
- name : Set up Docker Buildx
160
- uses : docker/setup-buildx-action@v2
159
+ uses : docker/setup-buildx-action@v3
161
160
- name : Login to Github Container Registry
162
161
if : env.PUSH == 'true'
163
- uses : docker/login-action@v2
162
+ uses : docker/login-action@v3
164
163
with :
165
164
registry : ghcr.io
166
165
username : ${{ github.repository_owner }}
167
166
password : ${{ secrets.GITHUB_TOKEN }}
168
167
- name : Login to DockerHub
169
168
if : env.PUSH == 'true'
170
- uses : docker/login-action@v2
169
+ uses : docker/login-action@v3
171
170
with :
172
171
username : ${{ secrets.DOCKERHUB_USERNAME }}
173
172
password : ${{ secrets.DOCKERHUB_TOKEN }}
174
173
- name : " Remove .dockerignore"
175
174
run : rm .dockerignore # enforce full source context
176
175
- name : Build and Push
177
- uses : docker/build-push-action@v3
176
+ uses : docker/build-push-action@v5
178
177
with :
179
178
context : .
180
179
file : .docker/${{ github.job }}/Dockerfile
0 commit comments