Skip to content

Commit d161077

Browse files
authored
Prep release (#39)
* requirements: sigstore 0.9.0 Signed-off-by: William Woodruff <[email protected]> * README: prep new version Signed-off-by: William Woodruff <[email protected]> Signed-off-by: William Woodruff <[email protected]>
1 parent b290ffb commit d161077

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

README.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- uses: actions/checkout@v3
2828
- name: install
2929
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
3131
with:
3232
inputs: file.txt
3333
```
@@ -55,15 +55,15 @@ provided.
5555
To sign one or more files:
5656

5757
```yaml
58-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
58+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
5959
with:
6060
inputs: file0.txt file1.txt file2.txt
6161
```
6262

6363
The `inputs` argument also supports file globbing:
6464

6565
```yaml
66-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
66+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
6767
with:
6868
inputs: ./path/to/inputs/*.txt
6969
```
@@ -76,7 +76,7 @@ The `identity-token` setting controls the OpenID Connect token provided to Fulci
7676
workflow will use the credentials found in the GitHub Actions environment.
7777

7878
```yaml
79-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
79+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
8080
with:
8181
inputs: file.txt
8282
identity-token: ${{ IDENTITY_TOKEN }} # assigned elsewhere
@@ -92,7 +92,7 @@ Server during OAuth2.
9292
Example:
9393

9494
```yaml
95-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
95+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
9696
with:
9797
inputs: file.txt
9898
oidc-client-id: alternative-sigstore-id
@@ -108,7 +108,7 @@ Connect Server during OAuth2.
108108
Example:
109109

110110
```yaml
111-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
111+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
112112
with:
113113
inputs: file.txt
114114
oidc-client-secret: alternative-sigstore-secret
@@ -124,7 +124,7 @@ when signing multiple input files.
124124
Example:
125125

126126
```yaml
127-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
127+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
128128
with:
129129
inputs: file.txt
130130
signature: custom-signature-filename.sig
@@ -133,7 +133,7 @@ Example:
133133
However, this example is invalid:
134134

135135
```yaml
136-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
136+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
137137
with:
138138
inputs: file0.txt file1.txt file2.txt
139139
signature: custom-signature-filename.sig
@@ -149,7 +149,7 @@ work when signing multiple input files.
149149
Example:
150150

151151
```yaml
152-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
152+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
153153
with:
154154
inputs: file.txt
155155
certificate: custom-certificate-filename.crt
@@ -158,7 +158,7 @@ Example:
158158
However, this example is invalid:
159159

160160
```yaml
161-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
161+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
162162
with:
163163
inputs: file0.txt file1.txt file2.txt
164164
certificate: custom-certificate-filename.crt
@@ -174,7 +174,7 @@ from. This setting cannot be used in combination with the `staging` setting.
174174
Example:
175175

176176
```yaml
177-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
177+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
178178
with:
179179
inputs: file.txt
180180
fulcio-url: https://fulcio.sigstage.dev
@@ -190,7 +190,7 @@ cannot be used in combination with the `staging` setting.
190190
Example:
191191

192192
```yaml
193-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
193+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
194194
with:
195195
inputs: file.txt
196196
rekor-url: https://rekor.sigstage.dev
@@ -206,7 +206,7 @@ in combination with the `staging` setting.
206206
Example:
207207

208208
```yaml
209-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
209+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
210210
with:
211211
inputs: file.txt
212212
ctfe: ./path/to/ctfe.pub
@@ -222,7 +222,7 @@ be used in combination with `staging` setting.
222222
Example:
223223

224224
```yaml
225-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
225+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
226226
with:
227227
inputs: file.txt
228228
ctfe: ./path/to/rekor.pub
@@ -238,7 +238,7 @@ instead of the default production instances.
238238
Example:
239239

240240
```yaml
241-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
241+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
242242
with:
243243
inputs: file.txt
244244
staging: true
@@ -261,7 +261,7 @@ and `verify-oidc-issuer` settings. Failing to pass these will produce an error.
261261
Example:
262262

263263
```yaml
264-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
264+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
265265
with:
266266
inputs: file.txt
267267
verify: true
@@ -284,7 +284,7 @@ This setting may only be used in conjunction with `verify-oidc-issuer`.
284284
Supplying it without `verify-oidc-issuer` will produce an error.
285285

286286
```yaml
287-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
287+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
288288
with:
289289
inputs: file.txt
290290
verify: true
@@ -309,7 +309,7 @@ Supplying it without `verify-cert-identity` will produce an error.
309309
Example:
310310

311311
```yaml
312-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
312+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
313313
with:
314314
inputs: file.txt
315315
verify: true
@@ -331,7 +331,7 @@ workflow artifact retention period is used.
331331
Example:
332332

333333
```yaml
334-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
334+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
335335
with:
336336
inputs: file.txt
337337
upload-signing-artifacts: true
@@ -356,7 +356,7 @@ permissions:
356356
357357
# ...
358358
359-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
359+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
360360
with:
361361
inputs: file.txt
362362
release-signing-artifacts: true
@@ -383,7 +383,7 @@ permissions:
383383
Example:
384384

385385
```yaml
386-
- uses: sigstore/gh-action-sigstore-python@v0.0.11
386+
- uses: sigstore/gh-action-sigstore-python@v0.2.0
387387
with:
388388
inputs: file.txt
389389
internal-be-careful-debug: true

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sigstore==0.8.3
1+
sigstore==0.9.0

0 commit comments

Comments
 (0)