This is an automated email from the ASF dual-hosted git repository. pnoltes pushed a commit to branch feature/566-introduce-clang-tidy-setup in repository https://gitbox.apache.org/repos/asf/celix.git
commit ad6b3ee0724d2c378f0fa26c6f8acf207cab874d Author: Pepijn Noltes <[email protected]> AuthorDate: Tue Feb 10 20:44:54 2026 +0100 gh-566: Update sarif naming to SARIF --- .github/workflows/clang-tidy-scan.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/clang-tidy-scan.yml b/.github/workflows/clang-tidy-scan.yml index 75f1b5bfc..79681e75d 100644 --- a/.github/workflows/clang-tidy-scan.yml +++ b/.github/workflows/clang-tidy-scan.yml @@ -63,7 +63,7 @@ jobs: # uses: cargo-bins/cargo-binstall@ec80feb9e330418e014932e5982599255eff6dbb #v1.17.4 # - name: Install SARIF Tools # run: cargo binstall -y clang-tidy-sarif - - name: Install SARIF Tools via Curl + - name: Install clang-tidy SARIF tool via Curl run: | VERSION="v0.8.0" TARGET="x86_64-unknown-linux-gnu" @@ -73,11 +73,11 @@ jobs: run: | set -o pipefail run-clang-tidy -p build -quiet | tee clang-tidy-report.txt - - name: Convert clang-tidy output to sarif + - name: Convert clang-tidy output to SARIF if: always() # run: cat clang-tidy-report.txt | clang-tidy-sarif > clang-tidy-report.sarif run: cat clang-tidy-report.txt | ./clang-tidy-sarif > clang-tidy-report.sarif - - name: upload sarif report + - name: upload SARIF report uses: github/codeql-action/upload-sarif@45cbd0c69e560cd9e7cd7f8c32362050c9b7ded2 #4.32.2 if: always() with:
