You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# # Use only 'java' to analyze code written in Java, Kotlin or both
72
+
# # Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
73
+
# # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
74
74
75
75
# defining steps for the job as explained above
76
76
steps:
@@ -94,7 +94,8 @@ jobs:
94
94
- name: Initialize CodeQL
95
95
uses: github/codeql-action/init@v3
96
96
with:
97
-
languages: ${{ matrix.language }} # defining the language for the CodeQL analysis
97
+
languages: java
98
+
# languages: ${{ matrix.language }} # defining the language for the CodeQL analysis
98
99
# debug: true # uncomment this line to enable debugging for CodeQL analysis step
99
100
# If you wish to specify custom queries, you can do so here or in a config file.
100
101
# By default, queries listed here will override any specified in a config file.
@@ -113,7 +114,8 @@ jobs:
113
114
- name: Perform CodeQL Analysis
114
115
uses: github/codeql-action/analyze@v3
115
116
with:
116
-
category: "/language:${{matrix.language}}"# defining the language for the CodeQL analysis
117
+
category: "/language:java"
118
+
# category: "/language:${{matrix.language}}" # defining the language for the CodeQL analysis
117
119
- uses: actions/upload-artifact@v3 # uploading the artifact to the GitHub Artifacts. Link to the documentation - https://docs.github.com/en/actions/guides/storing-workflow-data-as-artifacts
118
120
with:
119
121
name: jar-artifact # naming the artifact jar file/s path
0 commit comments