feat: add a max-rule-time
flag, and use it in the rule execution
#1460
Workflow file for this run
This file contains 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: Software Composition Analysis | |
on: | |
push: | |
branches: | |
- "**" | |
jobs: | |
software-composition-analysis: | |
runs-on: ubuntu-latest | |
name: Datadog SBOM Generation and Upload | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Rust | |
uses: actions-rust-lang/setup-rust-toolchain@v1.10.1 | |
with: | |
components: clippy | |
- name: cargo install sbom | |
run: cargo install --version 0.8.4 cargo-sbom | |
- name: cargo generate sbom | |
run: | | |
cargo sbom --cargo-package static-analysis-kernel --output-format cyclone_dx_json_1_4 > static-analysis-kernel.json | |
cargo sbom --cargo-package bins --output-format cyclone_dx_json_1_4 > bins.json | |
cargo sbom --cargo-package cli --output-format cyclone_dx_json_1_4 > cli.json | |
cargo sbom --cargo-package static-analysis-server --output-format cyclone_dx_json_1_4 > static-analysis-server.json | |
- name: Generate SBOM and Upload | |
id: software-composition-analysis | |
uses: DataDog/datadog-sca-github-action@main | |
with: | |
dd_api_key: ${{ secrets.DD_API_KEY }} | |
dd_app_key: ${{ secrets.DD_APP_KEY }} | |
dd_service: datadog-static-analyzer | |
dd_env: github-action | |
dd_site: ${{ vars.DD_SITE }} | |