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 c207304 commit 4c3d7aeCopy full SHA for 4c3d7ae
.github/workflows/sca-scan.yml
@@ -6,10 +6,18 @@ 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
+ - name: Setup .NET Core @ Latest
12
+ uses: actions/setup-dotnet@v1
13
+ with:
14
+ dotnet-version: "7.0.x"
15
+ - name: Run Dotnet Restore
16
+ run: |
17
+ dotnet restore
18
- name: Run Snyk to check for vulnerabilities
19
uses: snyk/actions/dotnet@master
20
env:
21
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
22
with:
- args: --fail-on=all
23
+ args: --file=Contentstack.Core/obj/project.assets.json --fail-on=all
0 commit comments