Ignoring running events emission. Retrieveing jonName directly on NuF… #12
Workflow file for this run
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
| on: [push] | |
| name: Datadog Software Composition Analysis | |
| jobs: | |
| software-composition-analysis: | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'OpenLineage/OpenLineage' && github.actor != 'dependabot[bot]' | |
| name: Datadog SBOM Generation and Upload | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Check imported libraries are secure and compliant | |
| id: datadog-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: openlineage | |
| dd_env: ci | |
| dd_site: us5.datadoghq.com |