Feat: DX-49 add params method #45
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: Source Composition Analysis Scan | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
security: | |
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: Run Snyk to check for vulnerabilities | |
uses: snyk/actions/dotnet@master | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
with: | |
args: --file=Contentstack.Core/obj/project.assets.json --fail-on=all |