Merge pull request #208 from vuestorefront/main #237
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: boostsecurity.io | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
jobs: | |
boost-gitleaks: | |
name: gitleaks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run gitleaks | |
uses: boostsecurityio/boostsec-scanner-github@v4 | |
with: | |
api_token: ${{ secrets.BOOST_API_TOKEN }} | |
registry_module: boostsecurityio/gitleaks | |
boost-native: | |
name: Native Scanner | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run Native Scanner | |
uses: boostsecurityio/boostsec-scanner-github@v4 | |
with: | |
api_token: ${{ secrets.BOOST_API_TOKEN }} | |
registry_module: boostsecurityio/scanner | |
boost-osv-scanner: | |
name: osv-scanner | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run osv-scanner | |
uses: boostsecurityio/boostsec-scanner-github@v4 | |
with: | |
api_token: ${{ secrets.BOOST_API_TOKEN }} | |
registry_module: boostsecurityio/osv-scanner | |
boost-sbom: | |
name: SBOM | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run SBOM | |
uses: boostsecurityio/boostsec-scanner-github@v4 | |
with: | |
api_token: ${{ secrets.BOOST_API_TOKEN }} | |
registry_module: boostsecurityio/trivy-sbom | |
boost-sca: | |
name: Trivy FS SCA | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run Trivy FS SCA | |
uses: boostsecurityio/boostsec-scanner-github@v4 | |
with: | |
api_token: ${{ secrets.BOOST_API_TOKEN }} | |
registry_module: boostsecurityio/trivy-fs | |
boost-semgrep: | |
name: semgrep | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run semgrep | |
uses: boostsecurityio/boostsec-scanner-github@v4 | |
with: | |
api_token: ${{ secrets.BOOST_API_TOKEN }} | |
registry_module: boostsecurityio/semgrep | |
env: | |
SEMGREP_RULES: p/ci | |