Skip to content

Commit fb92368

Browse files
committed
check sbom
1 parent 367c425 commit fb92368

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/scancode.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# This workflow will build and test a golang project
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
3+
4+
name: comp check
5+
6+
on:
7+
push:
8+
9+
jobs:
10+
11+
build:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v6
16+
with:
17+
path: scancode-inputs
18+
- name: run scancode
19+
id: scancode
20+
uses: aboutcode-org/scancode-action@beta
21+
with:
22+
pipelines: "scan_codebase"
23+
output-formats: "json xlsx spdx cyclonedx"
24+
check-compliance: true

0 commit comments

Comments
 (0)