forked from anchore/sbom-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
24 lines (21 loc) · 680 Bytes
/
action.yml
File metadata and controls
24 lines (21 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: "Anchore SBOM Action / Attach SBOM to Release"
description: "Creates an SBOM (Software Bill Of Materials) from your code and container images"
author: "Anchore"
inputs:
run:
required: true
description: "The action to run"
default: "publish-sbom"
type: "choice"
options: ["publish-sbom"]
sbom-artifact-match:
required: false
description: "A regex to find SBOM artifacts to attach to a release"
default: ".*\\.spdx\\.json$"
github-token:
description: "Authorized secret GitHub Personal Access Token. Defaults to github.token"
required: false
default: ${{ github.token }}
runs:
using: "node24"
main: "../dist/index.cjs"