Skip to content

Commit f19ab44

Browse files
authored
bump actions/attest from 1.3.3 to 1.4.0 (#85)
Signed-off-by: Brian DeHamer <[email protected]>
1 parent 8507f05 commit f19ab44

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

README.md

+4
Original file line numberDiff line numberDiff 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:

action.yml

+8-1
Original file line numberDiff line numberDiff 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.
@@ -53,7 +59,7 @@ runs:
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 }}
@@ -64,4 +70,5 @@ runs:
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 }}

0 commit comments

Comments
 (0)