-
Notifications
You must be signed in to change notification settings - Fork 2
46 lines (38 loc) · 1.02 KB
/
codeql.yml
File metadata and controls
46 lines (38 loc) · 1.02 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
name: 🔐 CodeQL Security Scan
on:
push:
branches:
- main
schedule:
- cron: '0 3 * * 0'
jobs:
analyze:
name: 🧪 CodeQL Analyze
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ java ]
steps:
- name: 📥 Checkout code
uses: actions/checkout@v4
- name: ♻️ Cache Maven deps
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-maven-
- name: 🔧 Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
- name: 🔨 Build project
run: ./mvnw compile -B
- name: 🧠 Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"