29
29
- uses : actions/checkout@v3
30
30
- name : install
31
31
run : python -m pip install .
32
- - uses : sigstore/gh-action-sigstore-python@v0.3 .0
32
+ - uses : sigstore/gh-action-sigstore-python@v1.0 .0
33
33
with :
34
34
inputs : file.txt
35
35
` ` `
@@ -53,15 +53,15 @@ provided.
53
53
To sign one or more files :
54
54
55
55
` ` ` yaml
56
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
56
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
57
57
with:
58
58
inputs: file0.txt file1.txt file2.txt
59
59
` ` `
60
60
61
61
The `inputs` argument also supports file globbing :
62
62
63
63
` ` ` yaml
64
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
64
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
65
65
with:
66
66
inputs: ./path/to/inputs/*.txt
67
67
` ` `
@@ -74,7 +74,7 @@ The `identity-token` setting controls the OpenID Connect token provided to Fulci
74
74
workflow will use the credentials found in the GitHub Actions environment.
75
75
76
76
` ` ` yaml
77
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
77
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
78
78
with:
79
79
inputs: file.txt
80
80
identity-token: ${{ IDENTITY_TOKEN }} # assigned elsewhere
@@ -90,7 +90,7 @@ Server during OAuth2.
90
90
Example :
91
91
92
92
` ` ` yaml
93
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
93
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
94
94
with:
95
95
inputs: file.txt
96
96
oidc-client-id: alternative-sigstore-id
@@ -106,7 +106,7 @@ Connect Server during OAuth2.
106
106
Example :
107
107
108
108
` ` ` yaml
109
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
109
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
110
110
with:
111
111
inputs: file.txt
112
112
oidc-client-secret: alternative-sigstore-secret
@@ -122,7 +122,7 @@ when signing multiple input files.
122
122
Example :
123
123
124
124
` ` ` yaml
125
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
125
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
126
126
with:
127
127
inputs: file.txt
128
128
signature: custom-signature-filename.sig
@@ -131,7 +131,7 @@ Example:
131
131
However, this example is invalid :
132
132
133
133
` ` ` yaml
134
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
134
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
135
135
with:
136
136
inputs: file0.txt file1.txt file2.txt
137
137
signature: custom-signature-filename.sig
@@ -147,7 +147,7 @@ work when signing multiple input files.
147
147
Example :
148
148
149
149
` ` ` yaml
150
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
150
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
151
151
with:
152
152
inputs: file.txt
153
153
certificate: custom-certificate-filename.crt
@@ -156,7 +156,7 @@ Example:
156
156
However, this example is invalid :
157
157
158
158
` ` ` yaml
159
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
159
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
160
160
with:
161
161
inputs: file0.txt file1.txt file2.txt
162
162
certificate: custom-certificate-filename.crt
@@ -172,7 +172,7 @@ from. This setting cannot be used in combination with the `staging` setting.
172
172
Example :
173
173
174
174
` ` ` yaml
175
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
175
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
176
176
with:
177
177
inputs: file.txt
178
178
fulcio-url: https://fulcio.sigstage.dev
@@ -188,7 +188,7 @@ cannot be used in combination with the `staging` setting.
188
188
Example :
189
189
190
190
` ` ` yaml
191
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
191
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
192
192
with:
193
193
inputs: file.txt
194
194
rekor-url: https://rekor.sigstage.dev
@@ -204,7 +204,7 @@ in combination with the `staging` setting.
204
204
Example :
205
205
206
206
` ` ` yaml
207
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
207
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
208
208
with:
209
209
inputs: file.txt
210
210
ctfe: ./path/to/ctfe.pub
@@ -220,7 +220,7 @@ be used in combination with `staging` setting.
220
220
Example :
221
221
222
222
` ` ` yaml
223
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
223
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
224
224
with:
225
225
inputs: file.txt
226
226
ctfe: ./path/to/rekor.pub
@@ -236,7 +236,7 @@ instead of the default production instances.
236
236
Example :
237
237
238
238
` ` ` yaml
239
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
239
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
240
240
with:
241
241
inputs: file.txt
242
242
staging: true
@@ -259,7 +259,7 @@ and `verify-oidc-issuer` settings. Failing to pass these will produce an error.
259
259
Example :
260
260
261
261
` ` ` yaml
262
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
262
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
263
263
with:
264
264
inputs: file.txt
265
265
verify: true
@@ -282,7 +282,7 @@ This setting may only be used in conjunction with `verify-oidc-issuer`.
282
282
Supplying it without `verify-oidc-issuer` will produce an error.
283
283
284
284
` ` ` yaml
285
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
285
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
286
286
with:
287
287
inputs: file.txt
288
288
verify: true
@@ -307,7 +307,7 @@ Supplying it without `verify-cert-identity` will produce an error.
307
307
Example :
308
308
309
309
` ` ` yaml
310
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
310
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
311
311
with:
312
312
inputs: file.txt
313
313
verify: true
@@ -329,7 +329,7 @@ workflow artifact retention period is used.
329
329
Example :
330
330
331
331
` ` ` yaml
332
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
332
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
333
333
with:
334
334
inputs: file.txt
335
335
upload-signing-artifacts: true
@@ -354,7 +354,7 @@ permissions:
354
354
355
355
# ...
356
356
357
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
357
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
358
358
with:
359
359
inputs: file.txt
360
360
release-signing-artifacts: true
@@ -381,7 +381,7 @@ permissions:
381
381
Example :
382
382
383
383
` ` ` yaml
384
- - uses: sigstore/gh-action-sigstore-python@v0.3 .0
384
+ - uses: sigstore/gh-action-sigstore-python@v1.0 .0
385
385
with:
386
386
inputs: file.txt
387
387
internal-be-careful-debug: true
0 commit comments