-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (41 loc) · 1.61 KB
/
nuget-reference-check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: "nuget package reference check"
on:
push:
pull_request:
schedule:
- cron: '0 8 * * *'
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Setup NuGet
uses: NuGet/[email protected]
- name: add DevExpress nuget feed
run: dotnet nuget add source https://nuget.devexpress.com/api -n DXFeed -u DevExpress -p ${{ secrets.DEVEXPRESS_NUGET_KEY }} --store-password-in-clear-text
- name: Restore dependencies
run: nuget restore ea-modelkit.sln
- name: Build
run: msbuild ea-modelkit.sln -property:Configuration=CICD -property:platform="Any CPU" /p:RestorePackages=false
- name: Checking NuGet vulnerabilites
run: |
dotnet list EA-ModelKit.sln package --outdated --include-transitive
dotnet list EA-ModelKit.sln package --deprecated --include-transitive
dotnet list EA-ModelKit.sln package --vulnerable --include-transitive 2>&1 | tee vulnerabilities.log
Write-Host "Analyze dotnet list package command log output..."
$logContent = Get-Content vulnerabilities.log
if ($logContent -match '\bcritical\b|\bhigh\b|\bmoderate\b|\blow\b') {
Write-Host "Security Vulnerabilities found"
exit 1
} else {
Write-Host "No Security Vulnerabilities found"
exit 0
}
shell: pwsh