Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,27 @@ jobs:
- name: Check Format (*.cs)
run: dotnet format --verify-no-changes --verbosity diagnostic

Check-Vulnerable:
name: Scan for Vulnerable Dependencies
needs: [Format]
timeout-minutes: 15
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Checkout
uses: actions/[email protected]

- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: ${{ env.DOTNET_VERSION }}

- name: Restore
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It need the restore?

Copy link
Member Author

@cschuchardt88 cschuchardt88 Jul 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes or else it can find the nuget source, since we have so many. This will check myget and nuget sources

run: dotnet restore

- name: Scan for Vulnerable Dependencies
run: dotnet list package --vulnerable --include-transitive

Test-Everything:
needs: [Format]
timeout-minutes: 15
Expand Down
Loading