forked from ShiftLeftSecurity/shiftleft-java-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (72 loc) · 2.97 KB
/
ng_sast_scan.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
---
# This workflow integrates ShiftLeft NG SAST with GitHub
# Visit https://docs.shiftleft.io for help
name: ShiftLeft
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
workflow_dispatch:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
NextGen-Static-Analysis:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# We are building this application with Java 11
- name: Setup Java JDK
uses: actions/setup-java@v1.4.3
with:
java-version: 11.0.x
- name: Package with maven
run: mvn compile package
- name: Download ShiftLeft CLI
run: |
curl https://cdn.shiftleft.io/download/sl > ${GITHUB_WORKSPACE}/sl && chmod a+rx ${GITHUB_WORKSPACE}/sl
# ShiftLeft requires Java 1.8. Post the package step override the version
- name: Setup Java JDK
uses: actions/setup-java@v1.4.3
with:
java-version: 1.8
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
id: extract_branch
- name: Branch name
run: echo running ${{ github.event.repositor.y.name }} on branch ${GITHUB_REF##*/}
- name: NG SAST Trunk
# Removed the --wait since we wont be checking the scan
if: ${{ github.ref == 'refs/heads/main' }}
run: |
${GITHUB_WORKSPACE}/sl analyze --app ${{ github.event.repository.name }} \
--tag branch=${{ github.head_ref || steps.extract_branch.outputs.branch }} \
--java --cpg target/hello-shiftleft-*.jar
env:
SHIFTLEFT_ACCESS_TOKEN: ${{ secrets.SHIFTLEFT_ACCESS_TOKEN }}
SHIFTLEFT_ORG_ID: ${{ secrets.SHIFTLEFT_ORG_ID }}
- name: NG SAST PR
# --wait in place because we will run check-analysis with this scan
if: ${{ github.event_name == 'pull_request' }}
run: |
${GITHUB_WORKSPACE}/sl analyze --wait --app ${{ github.event.repository.name }} \
--tag branch=${{ github.head_ref || steps.extract_branch.outputs.branch }} \
--java --cpg target/hello-shiftleft-*.jar
env:
SHIFTLEFT_ACCESS_TOKEN: ${{ secrets.SHIFTLEFT_ACCESS_TOKEN }}
SHIFTLEFT_ORG_ID: ${{ secrets.SHIFTLEFT_ORG_ID }}
- name: Validate Build Rules
# Only run on pull request and compare to Main as set in the build rules file Shiftleft.yml
if: ${{ github.event_name == 'pull_request' }}
run: |
${GITHUB_WORKSPACE}/sl check-analysis --app ${{ github.event.repository.name }} \
--target tag.branch=${{ github.head_ref || steps.extract_branch.outputs.branch }} \
--report \
--v2 \
--github-pr-number=${{github.event.number}} \
--github-pr-user=${{ github.repository_owner }} \
--github-pr-repo=${{ github.event.repository.name }} \
--github-token=${{ secrets.GITHUB_TOKEN }}
env:
SHIFTLEFT_ACCESS_TOKEN: ${{ secrets.SHIFTLEFT_ACCESS_TOKEN }}