2022-12-14 15:12:23 +00:00
|
|
|
name: CodeQL
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches-ignore:
|
|
|
|
- main
|
|
|
|
- dependabot/**
|
|
|
|
pull_request:
|
|
|
|
branches: [main]
|
2023-07-21 09:51:10 +00:00
|
|
|
workflow_dispatch:
|
2022-12-14 15:12:23 +00:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
# Only cancel jobs for PR updates
|
|
|
|
group: codeql-analysis-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
shell: bash
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
2023-01-30 07:07:10 +00:00
|
|
|
conditional:
|
|
|
|
name: Check conditional workflows and jobs
|
2022-12-14 15:12:23 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
2023-01-30 07:07:10 +00:00
|
|
|
java: ${{ steps.conditional.outputs.codeql-java }}
|
|
|
|
themes: ${{ steps.conditional.outputs.codeql-themes }}
|
2022-12-14 15:12:23 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
2023-01-30 07:07:10 +00:00
|
|
|
- id: conditional
|
|
|
|
uses: ./.github/actions/conditional
|
2023-07-25 13:43:53 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
2022-12-14 15:12:23 +00:00
|
|
|
|
|
|
|
java:
|
|
|
|
name: CodeQL Java
|
2023-01-30 07:07:10 +00:00
|
|
|
needs: conditional
|
2022-12-14 15:12:23 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-01-30 07:07:10 +00:00
|
|
|
if: needs.conditional.outputs.java == 'true'
|
2022-12-14 15:12:23 +00:00
|
|
|
outputs:
|
|
|
|
conclusion: ${{ steps.check.outputs.conclusion }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Initialize CodeQL
|
2023-07-20 09:32:58 +00:00
|
|
|
uses: github/codeql-action/init@v2.21.0
|
2022-12-14 15:12:23 +00:00
|
|
|
with:
|
|
|
|
languages: java
|
|
|
|
|
|
|
|
- name: Build Keycloak
|
|
|
|
uses: ./.github/actions/build-keycloak
|
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
2023-07-20 09:32:58 +00:00
|
|
|
uses: github/codeql-action/analyze@v2.21.0
|
2022-12-14 15:12:23 +00:00
|
|
|
with:
|
|
|
|
wait-for-processing: true
|
|
|
|
env:
|
|
|
|
CODEQL_ACTION_EXTRA_OPTIONS: '{"database":{"interpret-results":["--max-paths",0]}}'
|
|
|
|
|
|
|
|
- id: check
|
|
|
|
uses: ./.github/actions/checks-success
|
|
|
|
|
|
|
|
themes:
|
|
|
|
name: CodeQL Themes
|
2023-01-30 07:07:10 +00:00
|
|
|
needs: conditional
|
2022-12-14 15:12:23 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-01-30 07:07:10 +00:00
|
|
|
if: needs.conditional.outputs.themes == 'true'
|
2022-12-14 15:12:23 +00:00
|
|
|
outputs:
|
|
|
|
conclusion: ${{ steps.check.outputs.conclusion }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: Initialize CodeQL
|
2023-07-20 09:32:58 +00:00
|
|
|
uses: github/codeql-action/init@v2.21.0
|
2022-12-14 15:12:23 +00:00
|
|
|
env:
|
|
|
|
CODEQL_ACTION_EXTRA_OPTIONS: '{"database":{"finalize":["--no-run-unnecessary-builds"]}}'
|
|
|
|
with:
|
|
|
|
languages: javascript
|
|
|
|
source-root: themes/src/main/
|
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
2023-07-20 09:32:58 +00:00
|
|
|
uses: github/codeql-action/analyze@v2.21.0
|
2022-12-14 15:12:23 +00:00
|
|
|
with:
|
|
|
|
wait-for-processing: true
|
|
|
|
env:
|
|
|
|
CODEQL_ACTION_EXTRA_OPTIONS: '{"database":{"interpret-results":["--max-paths",0]}}'
|
|
|
|
|
|
|
|
- id: check
|
|
|
|
uses: ./.github/actions/checks-success
|
|
|
|
|
|
|
|
check:
|
2022-12-14 16:44:40 +00:00
|
|
|
name: Status Check - CodeQL
|
2023-07-21 09:51:10 +00:00
|
|
|
if: always()
|
2023-03-03 12:56:53 +00:00
|
|
|
needs: [conditional, java, themes]
|
2022-12-14 15:12:23 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
|
|
|
|
- name: CodeQL Java
|
|
|
|
uses: ./.github/actions/checks-job-pass
|
|
|
|
with:
|
2023-01-30 07:07:10 +00:00
|
|
|
required: ${{ needs.conditional.outputs.java }}
|
2022-12-14 15:12:23 +00:00
|
|
|
conclusion: ${{ needs.java.outputs.conclusion }}
|
|
|
|
|
|
|
|
- name: CodeQL Themes
|
|
|
|
uses: ./.github/actions/checks-job-pass
|
|
|
|
with:
|
2023-01-30 07:07:10 +00:00
|
|
|
required: ${{ needs.conditional.outputs.themes }}
|
2022-12-14 15:12:23 +00:00
|
|
|
conclusion: ${{ needs.themes.outputs.conclusion }}
|