diff --git a/.github/workflows/boost.yml b/.github/workflows/boost.yml deleted file mode 100644 index dab919f..0000000 --- a/.github/workflows/boost.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: boostsecurity.io -on: - workflow_dispatch: - push: - branches: - - main - pull_request: - branches: - - main - types: - - opened - - synchronize -jobs: - boost-sast: - name: SAST - 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/native-scanner - boost-sbom: - name: SBOM - if: github.event_name != 'pull_request' - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Upload SBOM from Trivy - uses: boostsecurityio/boostsec-scanner-github@v4 - with: - api_token: ${{ secrets.BOOST_API_TOKEN }} - registry_module: boostsecurityio/trivy-sbom -