diff --git a/.github/workflows/clang-tidy-review.yml b/.github/workflows/clang-tidy-review.yml index b430611ec9fb3..a47b5ecbc076f 100644 --- a/.github/workflows/clang-tidy-review.yml +++ b/.github/workflows/clang-tidy-review.yml @@ -25,9 +25,9 @@ jobs: /usr/bin/git config --global --add safe.directory "$GITHUB_WORKSPACE" /usr/bin/git diff -U0 HEAD^ | clang-tidy-diff-15.py -checks='-*,modernize-use-auto,modernize-use-using,modernize-use-nodiscard,modernize-use-nullptr,modernize-use-override,cppcoreguidelines-pro-type-static-cast-downcast' -p1 -path build -export-fixes clang-tidy-result/fixes.yml - name: Run clang-tidy-pr-comments action - uses: platisd/clang-tidy-pr-comments@master - env: - LD_LIBRARY_PATH: ${{ github.workspace }}/Python/ # workaround for https://github.com/actions/setup-python/issues/871 ever since clang-tidy-pr-comments became composite w/ embedded python version req + uses: platisd/clang-tidy-pr-comments@v1.4.3 # >1.4.3 switches to compose and runs into below mentioned issue w/o great workarounds (needs to be fixed by them not us) + #env: + #LD_LIBRARY_PATH: /__w/_tool/Python/ # workaround for https://github.com/actions/setup-python/issues/871 ever since clang-tidy-pr-comments became composite w/ embedded python version req with: # The GitHub token (or a personal access token) github_token: ${{ secrets.GITHUB_TOKEN }}