-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
37 lines (37 loc) · 939 Bytes
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: 'VCN authenticate the BoM for Java (Maven) projects'
description: 'Uses the vcn tool from CodeNotary.com to authenticate the bill of materials (BoM) for Java (Maven) projects.'
branding:
icon: 'lock'
color: 'green'
inputs:
asset:
description: 'Asset to authenticate.'
required: true
cnil_host:
description: 'CodeNotary Immutable Ledger (CNIL) host.'
required: true
cnil_grpc_port:
description: 'CNIL gRPC port.'
required: false
default: 443
cnil_api_key:
description: 'CNIL API key.'
required: true
signer_id:
description: 'CNIL signer ID.'
required: true
runs:
using: 'docker'
image: 'docker://codenotary/vcn:bom-maven'
args:
- a
- ${{ inputs.asset }}
- --lc-host
- ${{ inputs.cnil_host }}
- --lc-port
- ${{ inputs.cnil_grpc_port }}
- --lc-api-key
- ${{ inputs.cnil_api_key }}
- --signerID
- ${{ inputs.signer_id }}
- --bom