2929 - uses : actions/checkout@v3
3030 - name : install
3131 run : python -m pip install .
32- - uses : sigstore/gh-action-sigstore-python@v2.0.1
32+ - uses : sigstore/gh-action-sigstore-python@v2.1.0
3333 with :
3434 inputs : file.txt
3535` ` `
@@ -53,15 +53,15 @@ provided.
5353To sign one or more files :
5454
5555` ` ` yaml
56- - uses: sigstore/gh-action-sigstore-python@v2.0.1
56+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
5757 with:
5858 inputs: file0.txt file1.txt file2.txt
5959` ` `
6060
6161The `inputs` argument also supports file globbing :
6262
6363` ` ` yaml
64- - uses: sigstore/gh-action-sigstore-python@v2.0.1
64+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
6565 with:
6666 inputs: ./path/to/inputs/*.txt
6767` ` `
@@ -78,7 +78,7 @@ The `identity-token` setting controls the OpenID Connect token provided to Fulci
7878workflow will use the credentials found in the GitHub Actions environment.
7979
8080` ` ` yaml
81- - uses: sigstore/gh-action-sigstore-python@v2.0.1
81+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
8282 with:
8383 inputs: file.txt
8484 identity-token: ${{ IDENTITY_TOKEN }} # assigned elsewhere
@@ -94,7 +94,7 @@ Server during OAuth2.
9494Example :
9595
9696` ` ` yaml
97- - uses: sigstore/gh-action-sigstore-python@v2.0.1
97+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
9898 with:
9999 inputs: file.txt
100100 oidc-client-id: alternative-sigstore-id
@@ -110,7 +110,7 @@ Connect Server during OAuth2.
110110Example :
111111
112112` ` ` yaml
113- - uses: sigstore/gh-action-sigstore-python@v2.0.1
113+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
114114 with:
115115 inputs: file.txt
116116 oidc-client-secret: alternative-sigstore-secret
@@ -126,7 +126,7 @@ when signing multiple input files.
126126Example :
127127
128128` ` ` yaml
129- - uses: sigstore/gh-action-sigstore-python@v2.0.1
129+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
130130 with:
131131 inputs: file.txt
132132 signature: custom-signature-filename.sig
@@ -135,7 +135,7 @@ Example:
135135However, this example is invalid :
136136
137137` ` ` yaml
138- - uses: sigstore/gh-action-sigstore-python@v2.0.1
138+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
139139 with:
140140 inputs: file0.txt file1.txt file2.txt
141141 signature: custom-signature-filename.sig
@@ -151,7 +151,7 @@ work when signing multiple input files.
151151Example :
152152
153153` ` ` yaml
154- - uses: sigstore/gh-action-sigstore-python@v2.0.1
154+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
155155 with:
156156 inputs: file.txt
157157 certificate: custom-certificate-filename.crt
@@ -160,7 +160,7 @@ Example:
160160However, this example is invalid :
161161
162162` ` ` yaml
163- - uses: sigstore/gh-action-sigstore-python@v2.0.1
163+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
164164 with:
165165 inputs: file0.txt file1.txt file2.txt
166166 certificate: custom-certificate-filename.crt
@@ -176,7 +176,7 @@ when signing multiple input files.
176176Example :
177177
178178` ` ` yaml
179- - uses: sigstore/gh-action-sigstore-python@v2.0.1
179+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
180180 with:
181181 inputs: file.txt
182182 bundle: custom-bundle.sigstore
@@ -185,7 +185,7 @@ Example:
185185However, this example is invalid :
186186
187187` ` ` yaml
188- - uses: sigstore/gh-action-sigstore-python@v2.0.1
188+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
189189 with:
190190 inputs: file0.txt file1.txt file2.txt
191191 certificate: custom-bundle.sigstore
@@ -201,7 +201,7 @@ from. This setting cannot be used in combination with the `staging` setting.
201201Example :
202202
203203` ` ` yaml
204- - uses: sigstore/gh-action-sigstore-python@v2.0.1
204+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
205205 with:
206206 inputs: file.txt
207207 fulcio-url: https://fulcio.sigstage.dev
@@ -217,7 +217,7 @@ cannot be used in combination with the `staging` setting.
217217Example :
218218
219219` ` ` yaml
220- - uses: sigstore/gh-action-sigstore-python@v2.0.1
220+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
221221 with:
222222 inputs: file.txt
223223 rekor-url: https://rekor.sigstage.dev
@@ -233,7 +233,7 @@ in combination with the `staging` setting.
233233Example :
234234
235235` ` ` yaml
236- - uses: sigstore/gh-action-sigstore-python@v2.0.1
236+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
237237 with:
238238 inputs: file.txt
239239 ctfe: ./path/to/ctfe.pub
@@ -249,7 +249,7 @@ be used in combination with `staging` setting.
249249Example :
250250
251251` ` ` yaml
252- - uses: sigstore/gh-action-sigstore-python@v2.0.1
252+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
253253 with:
254254 inputs: file.txt
255255 ctfe: ./path/to/rekor.pub
@@ -265,7 +265,7 @@ instead of the default production instances.
265265Example :
266266
267267` ` ` yaml
268- - uses: sigstore/gh-action-sigstore-python@v2.0.1
268+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
269269 with:
270270 inputs: file.txt
271271 staging: true
@@ -288,7 +288,7 @@ and `verify-oidc-issuer` settings. Failing to pass these will produce an error.
288288Example :
289289
290290` ` ` yaml
291- - uses: sigstore/gh-action-sigstore-python@v2.0.1
291+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
292292 with:
293293 inputs: file.txt
294294 verify: true
@@ -311,7 +311,7 @@ This setting may only be used in conjunction with `verify-oidc-issuer`.
311311Supplying it without `verify-oidc-issuer` will produce an error.
312312
313313` ` ` yaml
314- - uses: sigstore/gh-action-sigstore-python@v2.0.1
314+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
315315 with:
316316 inputs: file.txt
317317 verify: true
@@ -336,7 +336,7 @@ Supplying it without `verify-cert-identity` will produce an error.
336336Example :
337337
338338` ` ` yaml
339- - uses: sigstore/gh-action-sigstore-python@v2.0.1
339+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
340340 with:
341341 inputs: file.txt
342342 verify: true
@@ -358,7 +358,7 @@ workflow artifact retention period is used.
358358Example :
359359
360360` ` ` yaml
361- - uses: sigstore/gh-action-sigstore-python@v2.0.1
361+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
362362 with:
363363 inputs: file.txt
364364 upload-signing-artifacts: true
@@ -386,7 +386,7 @@ permissions:
386386
387387# ...
388388
389- - uses: sigstore/gh-action-sigstore-python@v2.0.1
389+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
390390 with:
391391 inputs: file.txt
392392 release-signing-artifacts: true
@@ -413,7 +413,7 @@ permissions:
413413 Example :
414414
415415 ` ` ` yaml
416- - uses: sigstore/gh-action-sigstore-python@v2.0.1
416+ - uses: sigstore/gh-action-sigstore-python@v2.1.0
417417 with:
418418 inputs: file.txt
419419 internal-be-careful-debug: true
0 commit comments