We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31bdf6b commit 8ea40dbCopy full SHA for 8ea40db
1 file changed
.github/workflows/sca-scan.yml
@@ -6,10 +6,14 @@ jobs:
6
security-sca:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: actions/checkout@master
+ - name: Checkout repository
10
+ uses: actions/checkout@master
11
+ - uses: snyk/actions/setup@master
12
+ - name: Setup .NET
13
+ uses: actions/setup-dotnet@v3.0.3
14
+ - name: Restore dependencies
15
+ run: dotnet restore ./Contentstack.Utils.sln
16
- name: Run Snyk to check for vulnerabilities
- uses: snyk/actions/dotnet@master
17
+ run: cd Contentstack.Utils && snyk test --fail-on=all
18
env:
19
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
- with:
- args: --fail-on=all
0 commit comments