DDS : Rebranding Trend Micro integrations to TrendAI (#23119) #479
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 Static Analysis | |
| jobs: | |
| static-analysis: | |
| permissions: | |
| # needed for dd-sts | |
| id-token: write | |
| # Dependabot PRs don't have access to the required secrets | |
| if: github.actor != 'dependabot[bot]' | |
| runs-on: ubuntu-latest | |
| name: Datadog Static Analyzer | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Get Datadog credentials | |
| id: dd-sts | |
| uses: DataDog/dd-sts-action@2e8187910199bd93129520183c093e19aa585c75 # v1.0.0 | |
| with: | |
| policy: integrations-core | |
| - name: Check code meets quality and security standards | |
| id: datadog-static-analysis | |
| uses: DataDog/datadog-static-analyzer-github-action@c0e10d1c37e5b306b85e5bcf29b06bb233a71dc8 # v3.0.0 | |
| with: | |
| dd_api_key: ${{ steps.dd-sts.outputs.api_key }} | |
| dd_app_key: ${{ steps.dd-sts.outputs.app_key }} | |
| dd_site: datadoghq.com | |
| cpu_count: 2 |