We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35d5fc8 commit c59343aCopy full SHA for c59343a
.github/workflows/codeql-daily.yml
@@ -13,10 +13,10 @@ jobs:
13
analyze-java:
14
name: "Analyze Java Code"
15
permissions:
16
- actions: read
17
- security-events: write
+ actions: read # for github/codeql-action/init to get workflow details
+ security-events: write # for github/codeql-action/analyze to upload SARIF results
18
runs-on: ubuntu-latest
19
-
+
20
steps:
21
- uses: actions/checkout@v4
22
@@ -35,8 +35,8 @@ jobs:
35
languages: java
36
37
- name: Build Java code
38
+ # skipping build cache is needed so that all modules will be analyzed
39
run: ./gradlew assemble --no-build-cache
- # Skip build cache for full code analysis
40
41
- name: Perform CodeQL analysis
42
uses: github/codeql-action/analyze@v3
0 commit comments