@@ -5,7 +5,7 @@ gh-action-sigstore-python
55[ ![ Self-test] ( https://github.com/sigstore/gh-action-sigstore-python/actions/workflows/selftest.yml/badge.svg )] ( https://github.com/sigstore/gh-action-sigstore-python/actions/workflows/selftest.yml ) 
66
77This GitHub Action uses [ ` sigstore-python ` ] ( https://github.com/sigstore/sigstore-python ) 
8- to generate Sigstore signatures. ` gh-action-sigstore-python `  is the easiest way to [ integrate Sigstore into your CI system] ( https://docs.sigstore.dev/quickstart/quickstart-ci/ )  and can be used for not only Python projects, but projects in other languages as well.   
8+ to generate Sigstore signatures. ` gh-action-sigstore-python `  is the easiest way to [ integrate Sigstore into your CI system] ( https://docs.sigstore.dev/quickstart/quickstart-ci/ )  and can be used for not only Python projects, but projects in other languages as well.
99
1010>  [ !IMPORTANT] 
1111>  Are you publishing a package to PyPI? If so, you ** do not need this action** :
3636          persist-credentials : false 
3737      - name : install 
3838        run : python -m pip install . 
39-       - 
uses : 
sigstore/[email protected] .0  39+       - 
uses : 
sigstore/[email protected] .1  4040        with :
4141          inputs : file.txt 
4242` ` ` 
@@ -60,15 +60,15 @@ provided unless [release-signing-artifacts](#release-signing-artifacts) is set t
6060To sign one or more files :
6161
6262` ` ` yaml
63- - uses: sigstore/[email protected] .0  63+ - uses: sigstore/[email protected] .1  6464  with: 
6565    inputs: file0.txt file1.txt file2.txt 
6666` ` ` 
6767
6868The `inputs` argument also supports file globbing :
6969
7070` ` ` yaml
71- - uses: sigstore/[email protected] .0  71+ - uses: sigstore/[email protected] .1  7272  with: 
7373    inputs: ./path/to/inputs/*.txt 
7474` ` ` 
@@ -77,7 +77,7 @@ Multiple lines are fine, and whitespace in filenames can also be escaped using
7777POSIX shell lexing rules :
7878
7979` ` ` yaml
80- - uses: sigstore/[email protected] .0  80+ - uses: sigstore/[email protected] .1  8181  with: 
8282    inputs: | 
8383      ./path/to/inputs/*.txt 
@@ -97,7 +97,7 @@ The `identity-token` setting controls the OpenID Connect token provided to Fulci
9797workflow will use the credentials found in the GitHub Actions environment. 
9898
9999` ` ` yaml
100- - uses: sigstore/[email protected] .0  100+ - uses: sigstore/[email protected] .1  101101  with: 
102102    inputs: file.txt 
103103    identity-token: ${{ IDENTITY_TOKEN  }} # assigned elsewhere 
@@ -113,7 +113,7 @@ Server during OAuth2.
113113Example :
114114
115115` ` ` yaml
116- - uses: sigstore/[email protected] .0  116+ - uses: sigstore/[email protected] .1  117117  with: 
118118    inputs: file.txt 
119119    oidc-client-id: alternative-sigstore-id 
@@ -129,7 +129,7 @@ Connect Server during OAuth2.
129129Example :
130130
131131` ` ` yaml
132- - uses: sigstore/[email protected] .0  132+ - uses: sigstore/[email protected] .1  133133  with: 
134134    inputs: file.txt 
135135    oidc-client-secret: alternative-sigstore-secret 
@@ -145,7 +145,7 @@ instead of the default production instances.
145145Example :
146146
147147` ` ` yaml
148- - uses: sigstore/[email protected] .0  148+ - uses: sigstore/[email protected] .1  149149  with: 
150150    inputs: file.txt 
151151    staging: true 
@@ -168,7 +168,7 @@ and `verify-oidc-issuer` settings. Failing to pass these will produce an error.
168168Example :
169169
170170` ` ` yaml
171- - uses: sigstore/[email protected] .0  171+ - uses: sigstore/[email protected] .1  172172  with: 
173173    inputs: file.txt 
174174    verify: true 
@@ -191,7 +191,7 @@ This setting may only be used in conjunction with `verify-oidc-issuer`.
191191Supplying it without `verify-oidc-issuer` will produce an error. 
192192
193193` ` ` yaml
194- - uses: sigstore/[email protected] .0  194+ - uses: sigstore/[email protected] .1  195195  with: 
196196    inputs: file.txt 
197197    verify: true 
@@ -216,7 +216,7 @@ Supplying it without `verify-cert-identity` will produce an error.
216216Example :
217217
218218` ` ` yaml
219- - uses: sigstore/[email protected] .0  219+ - uses: sigstore/[email protected] .1  220220  with: 
221221    inputs: file.txt 
222222    verify: true 
@@ -238,7 +238,7 @@ workflow artifact retention period is used.
238238Example :
239239
240240` ` ` yaml
241- - uses: sigstore/[email protected] .0  241+ - uses: sigstore/[email protected] .1  242242  with: 
243243    inputs: file.txt 
244244    upload-signing-artifacts: true 
@@ -265,7 +265,7 @@ permissions:
265265
266266# ... 
267267
268- - uses: sigstore/[email protected] .0  268+ - uses: sigstore/[email protected] .1  269269  with: 
270270    inputs: file.txt 
271271    release-signing-artifacts: true 
@@ -281,7 +281,7 @@ permissions:
281281# ... 
282282
283283# no explicit settings needed, signs all pre-existing release artifacts 
284- - uses: sigstore/[email protected] .0  284+ - uses: sigstore/[email protected] .1  285285` ` ` 
286286
287287# ## Internal options
@@ -305,7 +305,7 @@ permissions:
305305  Example :
306306
307307  ` ` ` yaml
308-   - uses: sigstore/[email protected] .0  308+   - uses: sigstore/[email protected] .1  309309    with: 
310310      inputs: file.txt 
311311      internal-be-careful-debug: true 
0 commit comments