49 lines
1.3 KiB
YAML
49 lines
1.3 KiB
YAML
name: CodeQL (daily)
|
|
|
|
on:
|
|
schedule:
|
|
# daily at 1:30 UTC
|
|
- cron: "30 1 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
analyze:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Java 17
|
|
uses: actions/setup-java@v3
|
|
with:
|
|
distribution: temurin
|
|
java-version: 17.0.6
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v2
|
|
with:
|
|
languages: java
|
|
# using "latest" helps to keep up with the latest Kotlin support
|
|
# see https://github.com/github/codeql-action/issues/1555#issuecomment-1452228433
|
|
tools: latest
|
|
|
|
- name: Increase gradle daemon heap size
|
|
run: |
|
|
sed -i "s/org.gradle.jvmargs=/org.gradle.jvmargs=-Xmx3g /" gradle.properties
|
|
|
|
- uses: gradle/gradle-build-action@v2
|
|
with:
|
|
# skipping build cache is needed so that all modules will be analyzed
|
|
arguments: assemble -x javadoc --no-build-cache
|
|
|
|
- name: Perform CodeQL analysis
|
|
uses: github/codeql-action/analyze@v2
|
|
|
|
workflow-notification:
|
|
needs:
|
|
- analyze
|
|
if: always()
|
|
uses: ./.github/workflows/reusable-workflow-notification.yml
|
|
with:
|
|
success: ${{ needs.analyze.result == 'success' }}
|