Skip to content

Commit 3788a3b

Browse files
chore: add SAST scanning (#108)
* add SAST scanning Refs #84 Signed-off-by: Justin Abrahms <[email protected]> * Java scanning only Signed-off-by: Justin Abrahms <[email protected]> * Try codeql on the normal build to see how much longer it is. Signed-off-by: Justin Abrahms <[email protected]> Signed-off-by: Justin Abrahms <[email protected]>
1 parent faca917 commit 3788a3b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/pullrequest.yml

+9
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,19 @@ jobs:
1919
steps:
2020
- name: Check out the code
2121
uses: actions/checkout@v3
22+
2223
- name: Set up JDK 8
2324
uses: actions/setup-java@v3
2425
with:
2526
java-version: '8'
2627
distribution: 'temurin'
2728
cache: maven
2829

30+
- name: Initialize CodeQL
31+
uses: github/codeql-action/init@v2
32+
with:
33+
languages: java
34+
2935
- name: Cache local Maven repository
3036
uses: actions/cache@v3
3137
with:
@@ -44,3 +50,6 @@ jobs:
4450
name: coverage # optional
4551
fail_ci_if_error: true # optional (default = false)
4652
verbose: true # optional (default = false)
53+
54+
- name: Perform CodeQL Analysis
55+
uses: github/codeql-action/analyze@v2

0 commit comments

Comments
 (0)