You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,11 @@ and this project uses the version of main tool as main version number .
6
6
7
7
## [Unreleased]
8
8
9
+
- Cosign version 2.0
10
+
- BREAKING when doing KEYLESS signing:
11
+
- You need to acknowledge using a PUBLIC Rekor and Fulcio server when doing keyless signing. Set `public_transparancy_log` to `true`. Default is `false`.
12
+
13
+
## v5.1.0
9
14
- Remove experimental flag for keyless signing
10
15
- Rename arguments to reflect multiple container registries.
Copy file name to clipboardExpand all lines: README.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,6 +105,7 @@ Examples: Using explicit variables
105
105
106
106
**Optional** Set to `true` when you want to use keyless signing with [SigStore's Rekor and Fulcio](https://blog.sigstore.dev/sigstore-ga-ddd6ba67894d).
107
107
**Warning** This is a **PUBLIC** transparancy log, this means you will reveal information about your OCI images publically. **DO NOT USE THIS FOR PRIVATE IMAGES**.
108
+
In order to make sure you understand a **PUBLIC** transparancy log is used, you need to set the `public_transparancy_log` argument to `true`.
108
109
109
110
You can use `KEYLESS` to start using SigStore's Rekor and Fulcio together with GitHub OIDC. When set, you don't need to specify the three COSIGN Arguments.
110
111
@@ -235,7 +236,7 @@ Store the content of `cosign.pub`, `cosign.key` and the password in GitHub Secre
235
236
Now you can verify the image f.e. `jeroenknoops/test-image:latest`:
Copy file name to clipboardExpand all lines: action.yml
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,10 @@ inputs:
32
32
sign:
33
33
description: 'Sign image with Cosign. Requires COSIGN environment variables to be set. When used in combination with slsa-provenance / sbom it will also attach the results to the image.'
34
34
required: false
35
+
public_transparancy_log:
36
+
description: 'Use PUBLIC Fulcio and Rekor services to store information'
37
+
required: true
38
+
default: false
35
39
github_context:
36
40
description: 'internal (do not set): the "github" context object in json'
0 commit comments