diff --git a/actions/attest/README.md b/actions/attest/README.md index dff8bc5..689f8b3 100644 --- a/actions/attest/README.md +++ b/actions/attest/README.md @@ -41,6 +41,7 @@ jobs: | name | description | required | default | | --- | --- | --- | --- | +| `type-slsa` |
Generate an attestations bind some subject (a named artifact along with its digest) to a SLSA build provenance predicate using the in-toto format.
| `false` | `true` | | `subject-path` |Path to the artifact serving as the subject of the attestation. Must specify exactly one of "subject-path" or "subject-digest". May contain a glob pattern or list of paths (total subject count cannot exceed 2500).
| `false` | `""` | | `subject-digest` |SHA256 digest of the subject for the attestation. Must be in the form "sha256:hex_digest" (e.g. "sha256:abc123…"). Must specify exactly one of "subject-path" or "subject-digest".
| `false` | `""` | | `subject-name` |Subject name as it should appear in the attestation. Required unless "subject-path" is specified, in which case it will be inferred from the path.
| `false` | `""` | diff --git a/actions/attest/action.yml b/actions/attest/action.yml index 8e20707..395fa8d 100644 --- a/actions/attest/action.yml +++ b/actions/attest/action.yml @@ -5,6 +5,10 @@ description: | Designed for seamless integration within Ledger's CI/CD pipeline, the `attest` action automates the creation of cryptographic attestations, enhancing the integrity, authenticity, and traceability of your software supply chain. By providing a secure method to verify the origin and build process of your artifacts, it helps safeguard against supply chain attacks and meets compliance requirements for software distribution. inputs: + type-slsa: + description: 'Generate an attestations bind some subject (a named artifact along with its digest) to a SLSA build provenance predicate using the in-toto format.' + required: false + default: "true" subject-path: description: 'Path to the artifact serving as the subject of the attestation. Must specify exactly one of "subject-path" or "subject-digest". May contain a glob pattern or list of paths (total subject count cannot exceed 2500).' required: false @@ -26,7 +30,18 @@ inputs: runs: using: "composite" steps: - - uses: actions/attest@v1 + - name: Generate and sign attestation (SLSA type) + uses: actions/attest-build-provenance@v1 + if: ${{ inputs.type-slsa == 'true' }} + with: + subject-path: ${{ inputs.subject-path }} + subject-digest: ${{ inputs.subject-digest }} + subject-name: ${{ inputs.subject-name }} + push-to-registry: ${{ inputs.push-to-registry }} + show-summary: true + - name: Generate and sign attestation (custom type) + uses: actions/attest@v1 + if: ${{ inputs.type-slsa == 'false' }} with: subject-path: ${{ inputs.subject-path }} subject-digest: ${{ inputs.subject-digest }}