This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push: new 30d9b81 Fixed: Fix OFBiz speficic Javascript securiy issues reported by GH CodeQL (OFBIZ-12366) 30d9b81 is described below commit 30d9b81388973154a5695644f220e3d55a5b01df Author: Jacques Le Roux <jacques.le.r...@les7arts.com> AuthorDate: Wed Nov 10 17:09:37 2021 +0100 Fixed: Fix OFBiz speficic Javascript securiy issues reported by GH CodeQL (OFBIZ-12366) I think I simply forgot the single quotes --- .github/workflows/codeql-analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 4db3f44..bd77859 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -30,7 +30,7 @@ on: - '**.java' - '**.js' paths-ignore: - - **/node_modules/**.js + - '**/node_modules/**' pull_request: # The branches below must be a subset of the branches above branches: [ trunk ] @@ -38,7 +38,7 @@ on: - '**.java' - '**.js' paths-ignore: - - **/node_modules/**.js + - '**/node_modules/**' schedule: - cron: '27 15 * * 1'