From 293a6dcf4fb22c283ed6a9833034ed0b6177fe9c Mon Sep 17 00:00:00 2001 From: Simone Fortuna <92918981+Simo97Fortu@users.noreply.github.com> Date: Tue, 19 Mar 2024 13:16:18 +0100 Subject: [PATCH] [CI] action_ros_ci bump & switch to apt-get (#18) --- .github/workflows/humble.yml | 6 +++--- .github/workflows/iron.yml | 6 +++--- .github/workflows/rolling.yml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/humble.yml b/.github/workflows/humble.yml index b355012..fbac52d 100644 --- a/.github/workflows/humble.yml +++ b/.github/workflows/humble.yml @@ -14,16 +14,16 @@ jobs: steps: - name: Update - run: apt update + run: apt-get update - name: Install PIP - run: apt install -y python3-pip lcov + run: apt-get install -y python3-pip lcov - name: Install colcon tools run: python3 -m pip install colcon-lcov-result colcon-coveragepy-result - name: Run Tests - uses: ros-tooling/action-ros-ci@0.3.5 + uses: ros-tooling/action-ros-ci@0.3.6 with: ref: humble target-ros2-distro: humble diff --git a/.github/workflows/iron.yml b/.github/workflows/iron.yml index 2bc910e..079b8e7 100644 --- a/.github/workflows/iron.yml +++ b/.github/workflows/iron.yml @@ -14,10 +14,10 @@ jobs: steps: - name: Update - run: apt update + run: apt-get update - name: Install PIP - run: apt install -y python3-pip lcov + run: apt-get install -y python3-pip lcov - name: Install colcon tools run: python3 -m pip install colcon-lcov-result colcon-coveragepy-result @@ -26,7 +26,7 @@ jobs: uses: actions/checkout@v4 - name: Run Tests - uses: ros-tooling/action-ros-ci@0.3.5 + uses: ros-tooling/action-ros-ci@0.3.6 with: target-ros2-distro: iron import-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/rolling.yml b/.github/workflows/rolling.yml index 3295221..d33c0e0 100644 --- a/.github/workflows/rolling.yml +++ b/.github/workflows/rolling.yml @@ -14,10 +14,10 @@ jobs: steps: - name: Update - run: apt update + run: apt-get update - name: Install PIP - run: apt install -y python3-pip lcov + run: apt-get install -y python3-pip lcov - name: Install colcon tools run: python3 -m pip install colcon-lcov-result colcon-coveragepy-result @@ -26,7 +26,7 @@ jobs: uses: actions/checkout@v4 - name: Run Tests - uses: ros-tooling/action-ros-ci@0.3.5 + uses: ros-tooling/action-ros-ci@0.3.6 with: target-ros2-distro: rolling import-token: ${{ secrets.GITHUB_TOKEN }}