Skip to content

Commit

Permalink
added TSA server
Browse files Browse the repository at this point in the history
  • Loading branch information
elad-pticha committed Jul 21, 2024
1 parent f0f11c7 commit 7bcb50c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
15 changes: 15 additions & 0 deletions attest/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,21 @@ inputs:
description: Allow the creation of a Rekor transparency log (TLog) entry.
required: false
default: 'true'
allow-timestamp-upload:
description: Allow timestamping of the artifact signature against a timestamping authority.
required: false
default: 'false'
fulcio-server-url:
description: Fulcio server URL
required: false
default: 'https://fulcio.sigstore.dev'
rekor-server-url:
description: Rekor server URL
required: false
default: 'https://rekor.sigstore.dev'
timestamp-server-url:
description: Timestamp server URL
required: false
provenance-output:
description: Provenance output path. Can be absolute path, or relative path to the default working directory
required: false
Expand Down
1 change: 1 addition & 0 deletions attest/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ function getActionConfig() {
signKey: core.getInput('sign-key'),
allowKeyless: core.getBooleanInput('allow-keyless'),
allowTLogUpload: core.getBooleanInput('allow-tlog-upload'),
allowTimestampUpload: core.getBooleanInput('allow-timestamp-upload'),
provenanceOutput: core.getInput('provenance-output'),
signedProvenanceOutput: core.getInput('signed-provenance-output'),
},
Expand Down

0 comments on commit 7bcb50c

Please sign in to comment.