3a99384bae
Bumps [github/codeql-action](https://github.com/github/codeql-action) from 2.2.1 to 2.2.4. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v2.2.1...v2.2.4) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
150 lines
4.1 KiB
YAML
150 lines
4.1 KiB
YAML
name: CodeQL
|
|
|
|
on:
|
|
push:
|
|
branches-ignore:
|
|
- main
|
|
- dependabot/**
|
|
pull_request:
|
|
branches: [main]
|
|
schedule:
|
|
- cron: 0 9 * * 2
|
|
|
|
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:
|
|
|
|
conditional:
|
|
name: Check conditional workflows and jobs
|
|
if: github.event_name != 'schedule' || github.repository == 'keycloak/keycloak'
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
java: ${{ steps.conditional.outputs.codeql-java }}
|
|
themes: ${{ steps.conditional.outputs.codeql-themes }}
|
|
js-adapter: ${{ steps.conditional.outputs.codeql-js_adapter }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- id: conditional
|
|
uses: ./.github/actions/conditional
|
|
|
|
java:
|
|
name: CodeQL Java
|
|
needs: conditional
|
|
runs-on: ubuntu-latest
|
|
if: needs.conditional.outputs.java == 'true'
|
|
outputs:
|
|
conclusion: ${{ steps.check.outputs.conclusion }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v2.2.4
|
|
with:
|
|
languages: java
|
|
|
|
- name: Build Keycloak
|
|
uses: ./.github/actions/build-keycloak
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v2.2.4
|
|
with:
|
|
wait-for-processing: true
|
|
env:
|
|
CODEQL_ACTION_EXTRA_OPTIONS: '{"database":{"interpret-results":["--max-paths",0]}}'
|
|
|
|
- id: check
|
|
uses: ./.github/actions/checks-success
|
|
|
|
js-adapter:
|
|
name: CodeQL JavaScript Adapter
|
|
needs: conditional
|
|
runs-on: ubuntu-latest
|
|
if: needs.conditional.outputs.js-adapter == 'true'
|
|
outputs:
|
|
conclusion: ${{ steps.check.outputs.conclusion }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v2.2.4
|
|
env:
|
|
CODEQL_ACTION_EXTRA_OPTIONS: '{"database":{"finalize":["--no-run-unnecessary-builds"]}}'
|
|
with:
|
|
languages: javascript
|
|
source-root: adapters/oidc/js/src/
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v2.2.4
|
|
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
|
|
needs: conditional
|
|
runs-on: ubuntu-latest
|
|
if: needs.conditional.outputs.themes == 'true'
|
|
outputs:
|
|
conclusion: ${{ steps.check.outputs.conclusion }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Initialize CodeQL
|
|
uses: github/codeql-action/init@v2.2.4
|
|
env:
|
|
CODEQL_ACTION_EXTRA_OPTIONS: '{"database":{"finalize":["--no-run-unnecessary-builds"]}}'
|
|
with:
|
|
languages: javascript
|
|
source-root: themes/src/main/
|
|
|
|
- name: Perform CodeQL Analysis
|
|
uses: github/codeql-action/analyze@v2.2.4
|
|
with:
|
|
wait-for-processing: true
|
|
env:
|
|
CODEQL_ACTION_EXTRA_OPTIONS: '{"database":{"interpret-results":["--max-paths",0]}}'
|
|
|
|
- id: check
|
|
uses: ./.github/actions/checks-success
|
|
|
|
check:
|
|
name: Status Check - CodeQL
|
|
if: always() && ( github.event_name != 'schedule' || github.repository == 'keycloak/keycloak' )
|
|
needs: [conditional, java, js-adapter, themes]
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: CodeQL Java
|
|
uses: ./.github/actions/checks-job-pass
|
|
with:
|
|
required: ${{ needs.conditional.outputs.java }}
|
|
conclusion: ${{ needs.java.outputs.conclusion }}
|
|
|
|
- name: CodeQL JavaScript Adapter
|
|
uses: ./.github/actions/checks-job-pass
|
|
with:
|
|
required: ${{ needs.conditional.outputs.js-adapter }}
|
|
conclusion: ${{ needs.js-adapter.outputs.conclusion }}
|
|
|
|
- name: CodeQL Themes
|
|
uses: ./.github/actions/checks-job-pass
|
|
with:
|
|
required: ${{ needs.conditional.outputs.themes }}
|
|
conclusion: ${{ needs.themes.outputs.conclusion }}
|