From 7be9c82966d954d41ba0f02a0fd49a00e3b11c24 Mon Sep 17 00:00:00 2001 From: mosfet80 Date: Thu, 8 Aug 2024 09:33:49 +0200 Subject: [PATCH] Update ubuntu distro into lint.yml test.yml use jammy distro. It is proposed to standardize the version of Ubuntu used. Signed-off-by: mosfet80 --- .github/workflows/lint.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f8b8cb4911..264a2d61de 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -8,13 +8,13 @@ jobs: name: ament_${{ matrix.linter }} runs-on: ubuntu-latest container: - image: rostooling/setup-ros-docker:ubuntu-focal-ros-rolling-ros-base-latest + image: rostooling/setup-ros-docker:ubuntu-jammy-ros-rolling-ros-base-latest strategy: fail-fast: false matrix: linter: [copyright, xmllint] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ros-tooling/action-ros-lint@v0.1 with: linter: ${{ matrix.linter }} @@ -39,13 +39,13 @@ jobs: name: ament_${{ matrix.linter }} runs-on: ubuntu-latest container: - image: rostooling/setup-ros-docker:ubuntu-focal-ros-rolling-ros-base-latest + image: rostooling/setup-ros-docker:ubuntu-jammy-ros-rolling-ros-base-latest strategy: fail-fast: false matrix: linter: [cppcheck, cpplint, uncrustify] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ros-tooling/action-ros-lint@v0.1 with: linter: ${{ matrix.linter }} @@ -67,7 +67,7 @@ jobs: name: ament_${{ matrix.linter }} runs-on: ubuntu-latest container: - image: rostooling/setup-ros-docker:ubuntu-focal-ros-rolling-ros-base-latest + image: rostooling/setup-ros-docker:ubuntu-jammy-ros-rolling-ros-base-latest strategy: fail-fast: false matrix: @@ -76,7 +76,7 @@ jobs: - linter: clang_format arguments: "--config rosbag2_storage_mcap/.clang-format" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ros-tooling/action-ros-lint@v0.1 with: linter: ${{ matrix.linter }} @@ -88,13 +88,13 @@ jobs: name: ament_${{ matrix.linter }} runs-on: ubuntu-latest container: - image: rostooling/setup-ros-docker:ubuntu-focal-ros-rolling-ros-base-latest + image: rostooling/setup-ros-docker:ubuntu-jammy-ros-rolling-ros-base-latest strategy: fail-fast: false matrix: linter: [pep257, flake8] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ros-tooling/action-ros-lint@v0.1 with: linter: ${{ matrix.linter }}