We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56574e4 commit 626ad12Copy full SHA for 626ad12
.github/workflows/sca-scan.yml
@@ -6,10 +6,14 @@ jobs:
6
security:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: actions/checkout@master
+ - name: Checkout repository
10
+ uses: actions/checkout@master
11
+ - name: Run Dotnet Restore
12
+ run: |
13
+ dotnet restore
14
- name: Run Snyk to check for vulnerabilities
15
uses: snyk/actions/dotnet@master
16
env:
17
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
18
with:
- args: --fail-on=all
19
+ args: --file=Contentstack.Management.Core/obj/project.assets.json
0 commit comments