-
-
Notifications
You must be signed in to change notification settings - Fork 14
103 lines (94 loc) · 3.76 KB
/
Copy pathcodeql.yml
File metadata and controls
103 lines (94 loc) · 3.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: "CodeQL"
on:
push:
branches: [ 'master' ]
pull_request:
branches: [ 'master' ]
schedule:
# Weekly run, Mondays at 03:27 UTC
- cron: '27 3 * * 1'
# Allows running this workflow manually from the Actions tab or via the gh CLI.
workflow_dispatch:
# Cancel superseded runs on the same ref to avoid the long-running,
# eventually-cancelled analyses seen with the previous default setup.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
timeout-minutes: 360
permissions:
# Required to upload results to code scanning.
security-events: write
# Only needed for workflows in private repositories.
actions: read
contents: read
strategy:
fail-fast: false
matrix:
include:
# This large multi-module Maven build is expensive to compile, so we
# use build-mode 'none': CodeQL builds its model straight from the
# Java/Kotlin sources without invoking Maven. This avoids the long,
# eventually-cancelled autobuild that the previous default setup hit.
#
# For higher precision (dataflow through compiled dependencies) switch
# this to 'manual' and uncomment the "Build with Maven" step below.
- language: java-kotlin
build-mode: none
# Interpreted languages: no compilation, extracted straight from source.
- language: javascript-typescript
build-mode: none
- language: python
build-mode: none
# Scans the repository's own GitHub Actions workflows.
- language: actions
build-mode: none
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
queries: security-and-quality
# Exclude test and integration-test sources. With build-mode 'none'
# CodeQL extracts straight from source, so paths-ignore reliably
# scopes the analysis (it is honored for compiled languages only when
# build-mode is 'none').
config: |
paths-ignore:
- '**/src/test/**'
- '**/src/it/**'
# Third-party / vendored JavaScript — analysing it only adds noise.
- '**/*.min.js'
- '**/node_modules/**'
- '**/webjars/**'
- '**/doc-maven-plugin/src/main/resources/js/**'
- '**/openapi-war-overlay/**/swagger-ui.js'
# --- Manual build (only used when build-mode is 'manual') -------------
# - name: Set up JDK 11
# uses: actions/setup-java@v5
# with:
# java-version: '11'
# distribution: 'zulu'
# - name: Cache Maven packages
# uses: actions/cache@v6
# with:
# path: ~/.m2/repository
# key: ${{ runner.os }}-m2-repository-${{ hashFiles('**/pom.xml') }}
# restore-keys: ${{ runner.os }}-m2-repository
# - name: Build with Maven
# env:
# MAVEN_OPTS: -Dhttps.protocols=TLSv1.2 -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.requestSentEnabled=true -Dmaven.wagon.http.retryHandler.count=10
# run: mvn --batch-mode --errors -DskipTests -Dmaven.test.skip=true clean compile --file pom.xml
# ---------------------------------------------------------------------
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{ matrix.language }}"