File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,10 @@ See [action.yml](action.yml)
8686 # the "subject-digest" parameter be specified. Defaults to false.
8787 push-to-registry:
8888
89+ # Whether to attach a list of generated attestations to the workflow run
90+ # summary page. Defaults to true.
91+ show-summary:
92+
8993 # The GitHub token used to make authenticated API requests. Default is
9094 # ${{ github.token }}
9195 github-token:
Original file line number Diff line number Diff line change @@ -35,6 +35,12 @@ inputs:
3535 and that the "subject-digest" parameter be specified. Defaults to false.
3636 default : false
3737 required : false
38+ show-summary :
39+ description : >
40+ Whether to attach a list of generated attestations to the workflow run
41+ summary page. Defaults to true.
42+ default : true
43+ required : false
3844 github-token :
3945 description : >
4046 The GitHub token used to make authenticated API requests.
5359 id : generate-sbom-predicate
5460 with :
5561 sbom-path : ${{ inputs.sbom-path }}
56- - uses : actions/attest@7305951e905fb742188aa16c1d23409b13565e26 # v1.3.3
62+ - uses : actions/attest@2da0b136720d14f01f4dbeeafd1d5a4d76cbe21d # v1.4.0
5763 id : attest
5864 with :
5965 subject-path : ${{ inputs.subject-path }}
6470 predicate-path :
6571 ${{ steps.generate-sbom-predicate.outputs.predicate-path }}
6672 push-to-registry : ${{ inputs.push-to-registry }}
73+ show-summary : ${{ inputs.show-summary }}
6774 github-token : ${{ inputs.github-token }}
You can’t perform that action at this time.
0 commit comments