File tree 2 files changed +12
-1
lines changed
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)
86
86
# the "subject-digest" parameter be specified. Defaults to false.
87
87
push-to-registry:
88
88
89
+ # Whether to attach a list of generated attestations to the workflow run
90
+ # summary page. Defaults to true.
91
+ show-summary:
92
+
89
93
# The GitHub token used to make authenticated API requests. Default is
90
94
# ${{ github.token }}
91
95
github-token:
Original file line number Diff line number Diff line change @@ -35,6 +35,12 @@ inputs:
35
35
and that the "subject-digest" parameter be specified. Defaults to false.
36
36
default : false
37
37
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
38
44
github-token :
39
45
description : >
40
46
The GitHub token used to make authenticated API requests.
53
59
id : generate-sbom-predicate
54
60
with :
55
61
sbom-path : ${{ inputs.sbom-path }}
56
- - uses : actions/attest@7305951e905fb742188aa16c1d23409b13565e26 # v1.3.3
62
+ - uses : actions/attest@2da0b136720d14f01f4dbeeafd1d5a4d76cbe21d # v1.4.0
57
63
id : attest
58
64
with :
59
65
subject-path : ${{ inputs.subject-path }}
64
70
predicate-path :
65
71
${{ steps.generate-sbom-predicate.outputs.predicate-path }}
66
72
push-to-registry : ${{ inputs.push-to-registry }}
73
+ show-summary : ${{ inputs.show-summary }}
67
74
github-token : ${{ inputs.github-token }}
You can’t perform that action at this time.
0 commit comments