Skip to content

Commit

Permalink
Merge pull request #130 from DataDog/nogorodnikov/disable-gradle-buil…
Browse files Browse the repository at this point in the history
…d-cache-for-codeql

Disable Gradle build cache for CodeQL job
  • Loading branch information
0xnm authored Dec 13, 2024
2 parents f19d64c + 71225d9 commit 26dc027
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ jobs:

# Manually build the java bytecode
- name: Execute Gradle build
run: ./gradlew assembleRelease
# disable build caching, otherwise CodeQL cannot properly pick output, it seems
run: ./gradlew assembleRelease --no-build-cache

# Perform the analysis
- name: Perform CodeQL Analysis
Expand Down

0 comments on commit 26dc027

Please sign in to comment.