-
Notifications
You must be signed in to change notification settings - Fork 3
40 lines (39 loc) · 1.02 KB
/
sast.yaml
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
name: SAST
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
types:
- opened
- synchronize
jobs:
boost_security_sast:
name: SAST / Scanner
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Scanner
uses: boostsecurityio/boostsec-scanner-github@v3
with:
action: scan
api_token: ${{ secrets.BOOST_API_TOKEN }}
api_endpoint: https://api.dev.boostsec.io
brakeman:
name: Boost Brakeman Scanner
env:
BOOST_SCANNER_REGISTRY_REPO_DEV: https://github.com/boostsecurityio/scanner-testing
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Boost Brakeman Scanner
uses: boostsecurityio/boostsec-scanner-github@v4
with:
registry_module: scanners/boostsecurityio/brakeman
api_token: ${{ secrets.BOOST_API_TOKEN }}
api_endpoint: https://api.dev.boostsec.io