Skip to content

Commit

Permalink
[Add] GH action to check for status nuget packages
Browse files Browse the repository at this point in the history
  • Loading branch information
samatstariongroup committed Aug 15, 2024
1 parent 14043df commit 01ab2d8
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/nuget-reference-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: "nuget package reference check"

on:
push:
pull_request:
schedule:
- cron: '0 8 * * *'

jobs:
build:
runs-on: ubuntu-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 .NET Environment
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x

- name: add Starion GitHub nuget feed
run: dotnet nuget add source https://nuget.pkg.github.com/STARIONGROUP/index.json -n GHRHEA -u gh -p ${{ secrets.GH_PR_TOKEN }} --store-password-in-clear-text

- 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: dotnet restore COMETwebapp.sln

- name: Build
run: dotnet build COMETwebapp.sln --no-restore /p:ContinuousIntegrationBuild=true

- name: Checking NuGet vulnerabilites
run: |
set -e
dotnet list COMETwebapp.sln package --outdated --include-transitive
dotnet list COMETwebapp.sln package --deprecated --include-transitive
dotnet list COMETwebapp.sln package --vulnerable --include-transitive 2>&1 | tee vulnerabilities.log
echo "Analyze dotnet list package command log output..."
if grep -q -i "\bcritical\b\|\bhigh\b\|\bmoderate\b\|\blow\b" vulnerabilities.log; then
echo "Security Vulnerabilities found"
exit 1
else
echo "No Security Vulnerabilities found"
exit 0
fi

0 comments on commit 01ab2d8

Please sign in to comment.