From 65c828390c533aad9dd6ad0fa63611edbccac9c3 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Fri, 19 Aug 2022 11:10:45 +0200 Subject: [PATCH] CodeQL should not scan compiled assets (#12861) * add the Umbraco.Cms.StaticAssets folder to ignored paths for the codeql scanner * exclude only the 'wwwroot' folder since other assets could be valid to scan --- .github/config/codeql-config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/config/codeql-config.yml b/.github/config/codeql-config.yml index 77b390d392..bc9f75e77e 100644 --- a/.github/config/codeql-config.yml +++ b/.github/config/codeql-config.yml @@ -5,4 +5,5 @@ paths: paths-ignore: - '**/node_modules' - - 'src/Umbraco.Web.UI/wwwroot' \ No newline at end of file + - 'src/Umbraco.Web.UI/wwwroot' + - 'src/Umbraco.Cms.StaticAssets/wwwroot'