From 221c1b71b9abd9d4f25cdbacab3f59e2f92ce323 Mon Sep 17 00:00:00 2001 From: LKSeng <88697507+LKSeng@users.noreply.github.com> Date: Sun, 7 Apr 2024 03:08:15 +0000 Subject: [PATCH 1/2] update badge link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 83443b1..ccb7f76 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # rviz_rotatable_image_plugin -[![](https://github.com/LKSeng/rviz_rotatable_image_plugin/workflows/noetic_build/badge.svg?branch=main)](https://github.com/LKSeng/rviz_rotatable_image_plugin/actions) +[![](https://github.com/LKSeng/rviz_rotatable_image_plugin/workflows/noetic_build/badge.svg)](https://github.com/LKSeng/rviz_rotatable_image_plugin/actions) RViz plugin to rotate `sensor_msgs::Image` for visualisation purposes in-situ, especially so if camera is mounted at an angle. For avoidance of doubt, note that this plugin does not publish the rotated image. From 1c3903167bab141beac6676cac5789aec55657fb Mon Sep 17 00:00:00 2001 From: LKSeng <88697507+LKSeng@users.noreply.github.com> Date: Sun, 7 Apr 2024 03:27:09 +0000 Subject: [PATCH 2/2] update CI workflows to address nodejs 16 deprecation warnings --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8eec641..fa5c929 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,11 +24,11 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Runs a single command using the runners shell - name: Build docker image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 with: file: ./Dockerfile push: false