This is an automated email from the ASF dual-hosted git repository.
jleroux pushed a commit to branch release18.12
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/release18.12 by this push:
new 14f7fed Improved: The SARIF file generated by CodeQL for Java classes
is too large (OFBIZ-12361)
14f7fed is described below
commit 14f7feda74dc8f28988dc1070865c049ec6c2e06
Author: Jacques Le Roux <[email protected]>
AuthorDate: Tue Nov 23 13:25:29 2021 +0100
Improved: The SARIF file generated by CodeQL for Java classes is too large
(OFBIZ-12361)
It still does not work
---
.github/workflows/codeql-analysis.yml | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/codeql-analysis.yml
b/.github/workflows/codeql-analysis.yml
index 251098e..b600ab1 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -31,7 +31,7 @@ on:
- '**.js'
pull_request:
# The branches below must be a subset of the branches above
- branches: [ release* ]
+ branches: [ trunk ]
paths:
- '**.java'
- '**.js'
@@ -50,7 +50,9 @@ jobs:
strategy:
fail-fast: false
matrix:
- language: [ 'java', 'javascript' ]
+ #language: [ 'java', 'javascript' ]
+ language: [ 'javascript' ]
+ #language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript',
'python' ]
# Learn more:
#
https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
@@ -64,6 +66,7 @@ jobs:
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
+ debug: true
# If you wish to specify custom queries, you can do so here or in a
config file.
# By default, queries listed here will override any specified in a
config file.
# Prefix the list here with "+" to use these queries and those in the
config file.
@@ -87,4 +90,3 @@ jobs:
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
-