File tree 2 files changed +12
-4
lines changed
2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -109,9 +109,11 @@ See [action.yml](action.yml)
109
109
110
110
<!-- markdownlint-disable MD013 -->
111
111
112
- | Name | Description | Example |
113
- | ------------- | -------------------------------------------------------------- | ---------------------- |
114
- | `bundle-path` | Absolute path to the file containing the generated attestation | `/tmp/attestaion.json` |
112
+ | Name | Description | Example |
113
+ | ----------------- | -------------------------------------------------------------- | ------------------------------------------------ |
114
+ | `attestation-id` | GitHub ID for the attestation | `123456` |
115
+ | `attestation-url` | URL for the attestation summary | `https://github.com/foo/bar/attestations/123456` |
116
+ | `bundle-path` | Absolute path to the file containing the generated attestation | `/tmp/attestation.json` |
115
117
116
118
<!-- markdownlint-enable MD013 -->
117
119
Original file line number Diff line number Diff line change @@ -51,6 +51,12 @@ outputs:
51
51
bundle-path :
52
52
description : ' The path to the file containing the attestation bundle.'
53
53
value : ${{ steps.attest.outputs.bundle-path }}
54
+ attestation-id :
55
+ description : ' The ID of the attestation.'
56
+ value : ${{ steps.attest.outputs.attestation-id }}
57
+ attestation-url :
58
+ description : ' The URL for the attestation summary.'
59
+ value : ${{ steps.attest.outputs.attestation-url }}
54
60
55
61
runs :
56
62
using : ' composite'
59
65
id : generate-sbom-predicate
60
66
with :
61
67
sbom-path : ${{ inputs.sbom-path }}
62
- - uses : actions/attest@v2.0.1
68
+ - uses : actions/attest@v2.1.0
63
69
id : attest
64
70
with :
65
71
subject-path : ${{ inputs.subject-path }}
You can’t perform that action at this time.
0 commit comments