From afdbc309b8f4f01de11b741988e067a92c5d6654 Mon Sep 17 00:00:00 2001 From: Agustin Alba Chicar Date: Mon, 13 May 2024 17:30:03 +0200 Subject: [PATCH] Update github action versions. (#86) --------- Signed-off-by: Agustin Alba Chicar --- .github/workflows/build.yml | 4 ++-- .github/workflows/sanitizers.yml | 2 +- .github/workflows/scan_build.yml | 2 +- .github/workflows/wheel_generation.yml | 2 ++ 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 42e4679..669e66d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,9 +25,9 @@ jobs: container: image: ubuntu:20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ros-tooling/setup-ros@v0.6 - - uses: ros-tooling/action-ros-ci@v0.2 + - uses: ros-tooling/action-ros-ci@v0.3 id: action_ros_ci_step with: package-name: ${{ env.PACKAGE_NAME }} diff --git a/.github/workflows/sanitizers.yml b/.github/workflows/sanitizers.yml index e1554c6..22edd38 100644 --- a/.github/workflows/sanitizers.yml +++ b/.github/workflows/sanitizers.yml @@ -35,7 +35,7 @@ jobs: steps: # setup-ros first since it installs git, which is needed to fetch all branches from actions/checkout - uses: ros-tooling/setup-ros@v0.6 - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: path: ${{ env.ROS_WS }}/src/${{ env.PACKAGE_NAME }} - name: clang 8 install diff --git a/.github/workflows/scan_build.yml b/.github/workflows/scan_build.yml index 2516a31..91cb1b7 100644 --- a/.github/workflows/scan_build.yml +++ b/.github/workflows/scan_build.yml @@ -24,7 +24,7 @@ jobs: steps: # setup-ros first since it installs git, which is needed to fetch all branches from actions/checkout - uses: ros-tooling/setup-ros@v0.6 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: path: ${{ env.ROS_WS }}/src/${{ env.PACKAGE_NAME }} - name: clang 8 install diff --git a/.github/workflows/wheel_generation.yml b/.github/workflows/wheel_generation.yml index 5081c82..0f78dec 100644 --- a/.github/workflows/wheel_generation.yml +++ b/.github/workflows/wheel_generation.yml @@ -32,6 +32,7 @@ jobs: username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} steps: + # TODO: The container has installed glibc-2.17-326.el7_9.x86_64 and v4 requires 2.25 and above. Need to stick with an old version. - name: Checkout code uses: actions/checkout@v3 with: @@ -79,6 +80,7 @@ jobs: working-directory: ${{ env.COLCON_WS }} run: ls build/${PACKAGE_NAME}/wheel/repaired # Upload repaired wheel as artifact + # TODO: The container has installed glibc-2.17-326.el7_9.x86_64 and v4 requires 2.25 and above. Need to stick with an old version. - name: upload wheels as artifact uses: actions/upload-artifact@v3 with: