-
Notifications
You must be signed in to change notification settings - Fork 0
84 lines (72 loc) · 2.03 KB
/
codeql.yml
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
name: CodeQL
on:
push:
paths:
- '**'
branches:
- '**'
schedule:
- cron: '0 0 * * 0'
jobs:
app:
name: App
runs-on: ubuntu-latest
defaults:
run:
working-directory: App
permissions:
actions: read
contents: read
packages: read
security-events: write
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Set Gradle permissions
run: chmod +x gradlew
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: java
source-root: App
tools: latest
- name: Build project
uses: gradle/gradle-build-action@v2
with:
arguments: assembleDebug --scan
build-root-directory: App
cache-disabled: true
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v2
service:
name: Service
runs-on: ubuntu-latest
defaults:
run:
working-directory: Service
permissions:
actions: read
contents: read
packages: read
security-events: write
steps:
- name: Clone repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: csharp
source-root: Service
- name: Add GitHub Packages source
run: dotnet nuget add source --name github --username ${{ github.repository_owner }} --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text https://nuget.pkg.github.com/${{ github.repository_owner }}/index.json
- name: Auto-build
uses: github/codeql-action/autobuild@v2
with:
working-directory: Service
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@v2