File tree 3 files changed +7
-7
lines changed
moveit_setup_assistant/moveit_setup_framework/src
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 56
56
username : ${{ secrets.DOCKERHUB_USERNAME }}
57
57
password : ${{ secrets.DOCKERHUB_TOKEN }}
58
58
- name : Build and Push
59
- uses : docker/build-push-action@v5
59
+ uses : docker/build-push-action@v6
60
60
with :
61
61
file : .docker/${{ github.job }}/Dockerfile
62
62
build-args : ROS_DISTRO=${{ matrix.ROS_DISTRO }}
@@ -109,7 +109,7 @@ jobs:
109
109
username : ${{ secrets.DOCKERHUB_USERNAME }}
110
110
password : ${{ secrets.DOCKERHUB_TOKEN }}
111
111
- name : Build and Push
112
- uses : docker/build-push-action@v5
112
+ uses : docker/build-push-action@v6
113
113
with :
114
114
file : .docker/${{ github.job }}/Dockerfile
115
115
build-args : ROS_DISTRO=${{ matrix.ROS_DISTRO }}
@@ -158,7 +158,7 @@ jobs:
158
158
- name : " Remove .dockerignore"
159
159
run : rm .dockerignore # enforce full source context
160
160
- name : Build and Push
161
- uses : docker/build-push-action@v5
161
+ uses : docker/build-push-action@v6
162
162
with :
163
163
context : .
164
164
file : .docker/${{ github.job }}/Dockerfile
Original file line number Diff line number Diff line change @@ -51,12 +51,12 @@ jobs:
51
51
path : .ccache
52
52
key : docker-tutorial-ccache-${{ matrix.ROS_DISTRO }}-${{ hashFiles( '.docker/tutorial-source/Dockerfile' ) }}
53
53
- name : inject ccache into docker
54
- uses : reproducible-containers/buildkit-cache-dance@v3.1.0
54
+ uses : reproducible-containers/buildkit-cache-dance@v3.1.1
55
55
with :
56
56
cache-source : .ccache
57
57
cache-target : /root/.ccache/
58
58
- name : Build and Push
59
- uses : docker/build-push-action@v5
59
+ uses : docker/build-push-action@v6
60
60
with :
61
61
context : .
62
62
file : .docker/${{ github.job }}/Dockerfile
Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ bool SRDFConfig::GeneratedJointLimits::writeYaml(YAML::Emitter& emitter)
300
300
301
301
// Output property
302
302
emitter << YAML::Key << " max_velocity" ;
303
- emitter << YAML::Value << std::min (fabs (b.max_velocity_ ), fabs (b.min_velocity_ ));
303
+ emitter << YAML::Value << static_cast < double >( std::min (fabs (b.max_velocity_ ), fabs (b.min_velocity_ ) ));
304
304
305
305
// Output property
306
306
emitter << YAML::Key << " has_acceleration_limits" ;
@@ -315,7 +315,7 @@ bool SRDFConfig::GeneratedJointLimits::writeYaml(YAML::Emitter& emitter)
315
315
316
316
// Output property
317
317
emitter << YAML::Key << " max_acceleration" ;
318
- emitter << YAML::Value << std::min (fabs (b.max_acceleration_ ), fabs (b.min_acceleration_ ));
318
+ emitter << YAML::Value << static_cast < double >( std::min (fabs (b.max_acceleration_ ), fabs (b.min_acceleration_ ) ));
319
319
320
320
emitter << YAML::EndMap;
321
321
}
You can’t perform that action at this time.
0 commit comments