2022-03-15 07:59:59 +00:00
|
|
|
# For most projects, this workflow file will not need changing; you simply need
|
|
|
|
# to commit it to your repository.
|
|
|
|
#
|
|
|
|
# You may wish to alter this file to override the set of languages analyzed,
|
|
|
|
# or to provide custom queries or build logic.
|
|
|
|
name: "CodeQL JS Adapter"
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-03-29 13:10:20 +00:00
|
|
|
branches-ignore: [main]
|
2022-03-15 07:59:59 +00:00
|
|
|
pull_request:
|
|
|
|
branches: [main]
|
|
|
|
paths:
|
|
|
|
- 'adapters/oidc/js/**'
|
|
|
|
schedule:
|
|
|
|
- cron: '0 9 * * 2'
|
|
|
|
|
|
|
|
jobs:
|
2022-05-19 11:13:48 +00:00
|
|
|
if: github.repository == 'keycloak/keycloak'
|
2022-03-15 07:59:59 +00:00
|
|
|
analyze:
|
|
|
|
name: CodeQL analyze
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-03-28 15:51:51 +00:00
|
|
|
- uses: actions/checkout@v3
|
2022-04-14 08:52:59 +00:00
|
|
|
- uses: actions/setup-java@v3
|
2022-03-15 07:59:59 +00:00
|
|
|
with:
|
2022-03-30 15:45:31 +00:00
|
|
|
distribution: 'temurin'
|
2022-03-15 07:59:59 +00:00
|
|
|
java-version: '11'
|
2022-04-14 14:42:47 +00:00
|
|
|
cache: 'maven'
|
2022-03-15 07:59:59 +00:00
|
|
|
|
|
|
|
- name: Update maven settings
|
|
|
|
run: mkdir -p ~/.m2 ; cp .github/settings.xml ~/.m2/
|
|
|
|
|
|
|
|
- name: Initialize CodeQL
|
2022-05-16 22:27:02 +00:00
|
|
|
uses: github/codeql-action/init@v2.1.10
|
2022-03-15 07:59:59 +00:00
|
|
|
env:
|
|
|
|
CODEQL_ACTION_EXTRA_OPTIONS: '{"database":{"finalize":["--no-run-unnecessary-builds"]}}'
|
|
|
|
with:
|
|
|
|
languages: javascript
|
|
|
|
source-root: adapters/oidc/js/
|
|
|
|
|
|
|
|
- name: Build Keycloak
|
|
|
|
run: mvn install -Dmaven.test.skip -DskipQuarkus -DskipTestsuite -DskipExamples -DskipTests
|
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
2022-05-16 22:27:02 +00:00
|
|
|
uses: github/codeql-action/analyze@v2.1.10
|
2022-05-19 11:20:29 +00:00
|
|
|
with:
|
|
|
|
wait-for-processing: true
|
2022-03-15 07:59:59 +00:00
|
|
|
env:
|
|
|
|
CODEQL_ACTION_EXTRA_OPTIONS: '{"database":{"interpret-results":["--max-paths",0]}}'
|