DX | 06-04-2026 | Release #237
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
| name: Source Composition Analysis Scan | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| security-sca: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@master | |
| - name: Setup .NET Core @ Latest | |
| uses: actions/setup-dotnet@v1 | |
| with: | |
| dotnet-version: "7.0.x" | |
| - name: Run Dotnet Restore | |
| run: dotnet restore | |
| - name: Setup Snyk | |
| uses: snyk/actions/setup@master # just installs Snyk CLI, no deprecated dotnet action | |
| - name: Run Snyk to check for vulnerabilities | |
| run: | | |
| snyk test \ | |
| --file=Contentstack.Core/obj/project.assets.json \ | |
| --fail-on=all \ | |
| --json-file-output=snyk.json # ← writes snyk.json to disk | |
| env: | |
| SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
| continue-on-error: true # ← let pipeline continue even if vulns found | |
| - uses: contentstack/sca-policy@main |