27
27
- uses : actions/checkout@v3
28
28
- name : install
29
29
run : python -m pip install .
30
- - uses : sigstore/gh-action-sigstore-python@v0.0.11
30
+ - uses : sigstore/gh-action-sigstore-python@v0.2.0
31
31
with :
32
32
inputs : file.txt
33
33
` ` `
@@ -55,15 +55,15 @@ provided.
55
55
To sign one or more files :
56
56
57
57
` ` ` yaml
58
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
58
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
59
59
with:
60
60
inputs: file0.txt file1.txt file2.txt
61
61
` ` `
62
62
63
63
The `inputs` argument also supports file globbing :
64
64
65
65
` ` ` yaml
66
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
66
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
67
67
with:
68
68
inputs: ./path/to/inputs/*.txt
69
69
` ` `
@@ -76,7 +76,7 @@ The `identity-token` setting controls the OpenID Connect token provided to Fulci
76
76
workflow will use the credentials found in the GitHub Actions environment.
77
77
78
78
` ` ` yaml
79
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
79
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
80
80
with:
81
81
inputs: file.txt
82
82
identity-token: ${{ IDENTITY_TOKEN }} # assigned elsewhere
@@ -92,7 +92,7 @@ Server during OAuth2.
92
92
Example :
93
93
94
94
` ` ` yaml
95
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
95
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
96
96
with:
97
97
inputs: file.txt
98
98
oidc-client-id: alternative-sigstore-id
@@ -108,7 +108,7 @@ Connect Server during OAuth2.
108
108
Example :
109
109
110
110
` ` ` yaml
111
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
111
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
112
112
with:
113
113
inputs: file.txt
114
114
oidc-client-secret: alternative-sigstore-secret
@@ -124,7 +124,7 @@ when signing multiple input files.
124
124
Example :
125
125
126
126
` ` ` yaml
127
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
127
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
128
128
with:
129
129
inputs: file.txt
130
130
signature: custom-signature-filename.sig
@@ -133,7 +133,7 @@ Example:
133
133
However, this example is invalid :
134
134
135
135
` ` ` yaml
136
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
136
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
137
137
with:
138
138
inputs: file0.txt file1.txt file2.txt
139
139
signature: custom-signature-filename.sig
@@ -149,7 +149,7 @@ work when signing multiple input files.
149
149
Example :
150
150
151
151
` ` ` yaml
152
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
152
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
153
153
with:
154
154
inputs: file.txt
155
155
certificate: custom-certificate-filename.crt
@@ -158,7 +158,7 @@ Example:
158
158
However, this example is invalid :
159
159
160
160
` ` ` yaml
161
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
161
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
162
162
with:
163
163
inputs: file0.txt file1.txt file2.txt
164
164
certificate: custom-certificate-filename.crt
@@ -174,7 +174,7 @@ from. This setting cannot be used in combination with the `staging` setting.
174
174
Example :
175
175
176
176
` ` ` yaml
177
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
177
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
178
178
with:
179
179
inputs: file.txt
180
180
fulcio-url: https://fulcio.sigstage.dev
@@ -190,7 +190,7 @@ cannot be used in combination with the `staging` setting.
190
190
Example :
191
191
192
192
` ` ` yaml
193
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
193
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
194
194
with:
195
195
inputs: file.txt
196
196
rekor-url: https://rekor.sigstage.dev
@@ -206,7 +206,7 @@ in combination with the `staging` setting.
206
206
Example :
207
207
208
208
` ` ` yaml
209
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
209
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
210
210
with:
211
211
inputs: file.txt
212
212
ctfe: ./path/to/ctfe.pub
@@ -222,7 +222,7 @@ be used in combination with `staging` setting.
222
222
Example :
223
223
224
224
` ` ` yaml
225
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
225
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
226
226
with:
227
227
inputs: file.txt
228
228
ctfe: ./path/to/rekor.pub
@@ -238,7 +238,7 @@ instead of the default production instances.
238
238
Example :
239
239
240
240
` ` ` yaml
241
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
241
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
242
242
with:
243
243
inputs: file.txt
244
244
staging: true
@@ -261,7 +261,7 @@ and `verify-oidc-issuer` settings. Failing to pass these will produce an error.
261
261
Example :
262
262
263
263
` ` ` yaml
264
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
264
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
265
265
with:
266
266
inputs: file.txt
267
267
verify: true
@@ -284,7 +284,7 @@ This setting may only be used in conjunction with `verify-oidc-issuer`.
284
284
Supplying it without `verify-oidc-issuer` will produce an error.
285
285
286
286
` ` ` yaml
287
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
287
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
288
288
with:
289
289
inputs: file.txt
290
290
verify: true
@@ -309,7 +309,7 @@ Supplying it without `verify-cert-identity` will produce an error.
309
309
Example :
310
310
311
311
` ` ` yaml
312
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
312
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
313
313
with:
314
314
inputs: file.txt
315
315
verify: true
@@ -331,7 +331,7 @@ workflow artifact retention period is used.
331
331
Example :
332
332
333
333
` ` ` yaml
334
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
334
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
335
335
with:
336
336
inputs: file.txt
337
337
upload-signing-artifacts: true
@@ -356,7 +356,7 @@ permissions:
356
356
357
357
# ...
358
358
359
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
359
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
360
360
with:
361
361
inputs: file.txt
362
362
release-signing-artifacts: true
@@ -383,7 +383,7 @@ permissions:
383
383
Example :
384
384
385
385
` ` ` yaml
386
- - uses: sigstore/gh-action-sigstore-python@v0.0.11
386
+ - uses: sigstore/gh-action-sigstore-python@v0.2.0
387
387
with:
388
388
inputs: file.txt
389
389
internal-be-careful-debug: true
0 commit comments