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
* Upgrade to newest cosign version
* Also tweak README to mitigate issue #219: Do not promote the use of
"cosign-release" argument
Signed-off-by: Jussi Kukkonen <jkukkonen@google.com>
Copy file name to clipboardExpand all lines: README.md
+11-11Lines changed: 11 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,12 +13,10 @@ This action currently supports GitHub-provided Linux, macOS and Windows runners
13
13
Add the following entry to your Github workflow YAML file:
14
14
15
15
```yaml
16
-
uses: sigstore/cosign-installer@v4.0.0
17
-
with:
18
-
cosign-release: 'v3.0.3'# optional
16
+
uses: sigstore/cosign-installer@v4.1.0
19
17
```
20
18
21
-
Example using a pinned version:
19
+
Full example:
22
20
23
21
```yaml
24
22
jobs:
@@ -30,14 +28,14 @@ jobs:
30
28
name: Install Cosign
31
29
steps:
32
30
- name: Install Cosign
33
-
uses: sigstore/cosign-installer@v4.0.0
34
-
with:
35
-
cosign-release: 'v3.0.3'
31
+
uses: sigstore/cosign-installer@v4.1.0
36
32
- name: Check install!
37
33
run: cosign version
38
34
```
39
35
40
-
Example using the default version:
36
+
The used Cosign version only changes when cosign-installer is upgraded. If you need to select a specific Cosign version, use `cosign-release` but note that you are now responsible for maintaining the Cosign version (in addition to maintaining the cosign-installer version).
37
+
38
+
Example pinning Cosign version with `cosign-release`:
0 commit comments