Skip to content

Commit

Permalink
chore: move dependency scan to gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Niznikr committed Sep 23, 2024
1 parent 8008564 commit fad65cf
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 15 deletions.
15 changes: 0 additions & 15 deletions .circleci/config.yml

This file was deleted.

20 changes: 20 additions & 0 deletions .github/workflows/dependency-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Dependency Scan

on: pull_request

jobs:
dependency-scan:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: go.mod

- name: Generate SBOM
uses: launchdarkly/common-actions/dependency-scan/generate-sbom@main
with:
types: 'go,nodejs'

- name: Evaluate SBOM Policy
uses: launchdarkly/common-actions/dependency-scan/evaluate-policy@main

0 comments on commit fad65cf

Please sign in to comment.