Skip to content

Commit

Permalink
adds step to check for outdated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
vigneshk-tw committed Oct 3, 2024
1 parent a120b52 commit 65104b3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/build-test-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,18 @@ jobs:
run: dotnet build
working-directory: Xero-NetStandard

- name: Check for Vulnerabilities
- name: Check for Outdated Packages
run: |
dotnet list package --outdated
working-directory: Xero-NetStandard

- name: Check for Vulnerable Packages
run: |
dotnet list package --vulnerable
working-directory: Xero-NetStandard
continue-on-error: false



# - name: Validate Lint
# run: dotnet format --verify-no-changes
Expand Down

0 comments on commit 65104b3

Please sign in to comment.