Skip to content

Commit

Permalink
Merge pull request #907 from kruplm/component-detection-nuget-cpm
Browse files Browse the repository at this point in the history
chore(Workflows): Add workflow to update the Dependency Graph with CPM Nuget dependencies
  • Loading branch information
bingenito authored Jan 10, 2025
2 parents a2de0e8 + 587244c commit 4b80032
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/dependency-submission.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Dependency Submission

on:
workflow_dispatch:
schedule:
- cron: 0 19 * * * #7 PM ET


permissions:
id-token: write
contents: write

jobs:
dependency-submission:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build Components
run: |
npm i
npx lerna run build --stream
powershell ./build/dotnet-restore.ps1
powershell ./build/dotnet-build.ps1
- name: Component detection
uses: advanced-security/[email protected]
with:
detectorsFilter: "Npm,NuGet"

0 comments on commit 4b80032

Please sign in to comment.