Skip to content

Commit 9ea3c9d

Browse files
authored
README: prep 1.1.0 (#43)
Signed-off-by: William Woodruff <[email protected]>
1 parent 09c996b commit 9ea3c9d

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

README.md

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/checkout@v3
3030
- name: install
3131
run: python -m pip install .
32-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
32+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
3333
with:
3434
inputs: file.txt
3535
```
@@ -53,15 +53,15 @@ provided.
5353
To sign one or more files:
5454

5555
```yaml
56-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
56+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
5757
with:
5858
inputs: file0.txt file1.txt file2.txt
5959
```
6060

6161
The `inputs` argument also supports file globbing:
6262

6363
```yaml
64-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
64+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
6565
with:
6666
inputs: ./path/to/inputs/*.txt
6767
```
@@ -74,7 +74,7 @@ The `identity-token` setting controls the OpenID Connect token provided to Fulci
7474
workflow will use the credentials found in the GitHub Actions environment.
7575

7676
```yaml
77-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
77+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
7878
with:
7979
inputs: file.txt
8080
identity-token: ${{ IDENTITY_TOKEN }} # assigned elsewhere
@@ -90,7 +90,7 @@ Server during OAuth2.
9090
Example:
9191

9292
```yaml
93-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
93+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
9494
with:
9595
inputs: file.txt
9696
oidc-client-id: alternative-sigstore-id
@@ -106,7 +106,7 @@ Connect Server during OAuth2.
106106
Example:
107107

108108
```yaml
109-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
109+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
110110
with:
111111
inputs: file.txt
112112
oidc-client-secret: alternative-sigstore-secret
@@ -122,7 +122,7 @@ when signing multiple input files.
122122
Example:
123123

124124
```yaml
125-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
125+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
126126
with:
127127
inputs: file.txt
128128
signature: custom-signature-filename.sig
@@ -131,7 +131,7 @@ Example:
131131
However, this example is invalid:
132132

133133
```yaml
134-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
134+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
135135
with:
136136
inputs: file0.txt file1.txt file2.txt
137137
signature: custom-signature-filename.sig
@@ -147,7 +147,7 @@ work when signing multiple input files.
147147
Example:
148148

149149
```yaml
150-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
150+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
151151
with:
152152
inputs: file.txt
153153
certificate: custom-certificate-filename.crt
@@ -156,7 +156,7 @@ Example:
156156
However, this example is invalid:
157157

158158
```yaml
159-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
159+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
160160
with:
161161
inputs: file0.txt file1.txt file2.txt
162162
certificate: custom-certificate-filename.crt
@@ -172,7 +172,7 @@ when signing multiple input files.
172172
Example:
173173

174174
```yaml
175-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
175+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
176176
with:
177177
inputs: file.txt
178178
bundle: custom-bundle.sigstore
@@ -181,7 +181,7 @@ Example:
181181
However, this example is invalid:
182182

183183
```yaml
184-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
184+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
185185
with:
186186
inputs: file0.txt file1.txt file2.txt
187187
certificate: custom-bundle.sigstore
@@ -197,7 +197,7 @@ from. This setting cannot be used in combination with the `staging` setting.
197197
Example:
198198

199199
```yaml
200-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
200+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
201201
with:
202202
inputs: file.txt
203203
fulcio-url: https://fulcio.sigstage.dev
@@ -213,7 +213,7 @@ cannot be used in combination with the `staging` setting.
213213
Example:
214214

215215
```yaml
216-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
216+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
217217
with:
218218
inputs: file.txt
219219
rekor-url: https://rekor.sigstage.dev
@@ -229,7 +229,7 @@ in combination with the `staging` setting.
229229
Example:
230230

231231
```yaml
232-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
232+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
233233
with:
234234
inputs: file.txt
235235
ctfe: ./path/to/ctfe.pub
@@ -245,7 +245,7 @@ be used in combination with `staging` setting.
245245
Example:
246246

247247
```yaml
248-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
248+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
249249
with:
250250
inputs: file.txt
251251
ctfe: ./path/to/rekor.pub
@@ -261,7 +261,7 @@ instead of the default production instances.
261261
Example:
262262

263263
```yaml
264-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
264+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
265265
with:
266266
inputs: file.txt
267267
staging: true
@@ -284,7 +284,7 @@ and `verify-oidc-issuer` settings. Failing to pass these will produce an error.
284284
Example:
285285

286286
```yaml
287-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
287+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
288288
with:
289289
inputs: file.txt
290290
verify: true
@@ -307,7 +307,7 @@ This setting may only be used in conjunction with `verify-oidc-issuer`.
307307
Supplying it without `verify-oidc-issuer` will produce an error.
308308

309309
```yaml
310-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
310+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
311311
with:
312312
inputs: file.txt
313313
verify: true
@@ -332,7 +332,7 @@ Supplying it without `verify-cert-identity` will produce an error.
332332
Example:
333333

334334
```yaml
335-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
335+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
336336
with:
337337
inputs: file.txt
338338
verify: true
@@ -354,7 +354,7 @@ workflow artifact retention period is used.
354354
Example:
355355

356356
```yaml
357-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
357+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
358358
with:
359359
inputs: file.txt
360360
upload-signing-artifacts: true
@@ -379,7 +379,7 @@ permissions:
379379
380380
# ...
381381
382-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
382+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
383383
with:
384384
inputs: file.txt
385385
release-signing-artifacts: true
@@ -406,7 +406,7 @@ permissions:
406406
Example:
407407

408408
```yaml
409-
- uses: sigstore/gh-action-sigstore-python@v1.0.0
409+
- uses: sigstore/gh-action-sigstore-python@v1.1.0
410410
with:
411411
inputs: file.txt
412412
internal-be-careful-debug: true

0 commit comments

Comments
 (0)