From 64a537e532706afc4209ab00df7892bc8840e883 Mon Sep 17 00:00:00 2001 From: Jean-Pierre Busch Date: Wed, 4 Sep 2024 07:07:44 +0000 Subject: [PATCH] update artifact action versions --- .github/workflows/gitlab.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gitlab.yml b/.github/workflows/gitlab.yml index 9cf1ea9..47a666e 100644 --- a/.github/workflows/gitlab.yml +++ b/.github/workflows/gitlab.yml @@ -17,7 +17,7 @@ jobs: run: | curl --silent --fail --request POST --form "token=${{ secrets.DOCKER_ROS_CI_TRIGGER_GITLAB_TOKEN }}" --form "ref=main" --form "variables[DOCKER_ROS_GIT_REF]=${{ github.sha }}" "https://gitlab.ika.rwth-aachen.de/api/v4/projects/1886/trigger/pipeline" | jq -r .id > id - name: Upload pipeline ID - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: id_ros path: id @@ -27,7 +27,7 @@ jobs: needs: trigger-ros steps: - name: Get pipeline ID - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: id_ros - name: Wait for pipeline completion @@ -53,7 +53,7 @@ jobs: run: | curl --silent --fail --request POST --form "token=${{ secrets.DOCKER_ROS_CI_TRIGGER_GITLAB_TOKEN }}" --form "ref=ros2" --form "variables[DOCKER_ROS_GIT_REF]=${{ github.sha }}" "https://gitlab.ika.rwth-aachen.de/api/v4/projects/1886/trigger/pipeline" | jq -r .id > id - name: Upload pipeline ID - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: id_ros2 path: id @@ -63,7 +63,7 @@ jobs: needs: trigger-ros2 steps: - name: Get pipeline ID - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: id_ros2 - name: Wait for pipeline completion