diff --git a/.github/workflows/build_and_test.yaml b/.github/workflows/build_and_test.yaml index 3f6e48c..cf19a31 100644 --- a/.github/workflows/build_and_test.yaml +++ b/.github/workflows/build_and_test.yaml @@ -15,10 +15,9 @@ jobs: strategy: matrix: env: - - IMAGE: galactic-source - CLANG_TIDY: true - IMAGE: humble-source - IMAGE: rolling-source + - IMAGE: jazzy-source env: DOCKER_IMAGE: moveit/moveit2:${{ matrix.env.IMAGE }} @@ -33,7 +32,7 @@ jobs: name: ${{ matrix.env.IMAGE }}${{ matrix.env.CLANG_TIDY && ' + clang-tidy' || '' }} runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: cache upstream_ws @@ -53,7 +52,7 @@ jobs: restore-keys: | target_ws-${{ env.CACHE_PREFIX }}-${{ hashFiles('**/CMakeLists.txt', '**/package.xml') }} - name: cache ccache - uses: pat-s/always-upload-cache@v2.1.5 + uses: pat-s/always-upload-cache@v3 with: path: ${{ env.CCACHE_DIR }} key: ccache-${{ env.CACHE_PREFIX }}-${{ github.sha }}-${{ github.run_id }} diff --git a/.github/workflows/format.yaml b/.github/workflows/format.yaml index 1a42bd9..5314fae 100644 --- a/.github/workflows/format.yaml +++ b/.github/workflows/format.yaml @@ -15,7 +15,7 @@ jobs: name: Format runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: Install clang-format-12 - run: sudo apt-get install clang-format-12 - - uses: pre-commit/action@v3.0.0 + - uses: actions/checkout@v4 + - name: Install clang-format-14 + run: sudo apt-get install clang-format-14 + - uses: pre-commit/action@v3.0.1 diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index bb36db9..d0b7b01 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -15,7 +15,7 @@ repos: # Standard hooks - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.4.0 + rev: v4.6.0 hooks: - id: check-added-large-files - id: check-case-conflict @@ -33,7 +33,7 @@ repos: - id: trailing-whitespace - repo: https://github.com/psf/black - rev: 23.3.0 + rev: 23.12.0 hooks: - id: black