From 0a13b6e61260105cbe3bdb668b36edbe1ca673c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Proulx?= <76956526+fproulx-boostsecurity@users.noreply.github.com> Date: Tue, 7 May 2024 10:18:04 -0400 Subject: [PATCH] Dogfood ZTP (#8) --- .github/workflows/boost.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/boost.yml 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 -