From 96809d4801d52270c622650cff16f19906520ec6 Mon Sep 17 00:00:00 2001 From: TAMARA LIPOWSKI Date: Mon, 20 Jan 2025 17:28:30 -0500 Subject: [PATCH] fix: Filter paths when running slither in CI - We don't want to check submodules, solidity versions are different --- .github/workflows/slither.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/slither.yml b/.github/workflows/slither.yml index 55a9f72..4134b29 100644 --- a/.github/workflows/slither.yml +++ b/.github/workflows/slither.yml @@ -13,4 +13,5 @@ jobs: - uses: actions/checkout@v4 - uses: crytic/slither-action@v0.4.0 with: - target: 'foundry/' \ No newline at end of file + target: 'foundry/' + slither-args: '--filter-paths foundry/lib/' \ No newline at end of file