29
29
- uses : actions/checkout@v3
30
30
- name : install
31
31
run : python -m pip install .
32
- - uses : sigstore/gh-action-sigstore-python@v2.1.1
32
+ - uses : sigstore/gh-action-sigstore-python@v3.0.0
33
33
with :
34
34
inputs : file.txt
35
35
` ` `
@@ -53,15 +53,15 @@ provided unless [release-signing-artifacts](#release-signing-artifacts) is set t
53
53
To sign one or more files :
54
54
55
55
` ` ` yaml
56
- - uses: sigstore/gh-action-sigstore-python@v2.1.1
56
+ - uses: sigstore/gh-action-sigstore-python@v3.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@v2.1.1
64
+ - uses: sigstore/gh-action-sigstore-python@v3.0.0
65
65
with:
66
66
inputs: ./path/to/inputs/*.txt
67
67
` ` `
@@ -70,7 +70,7 @@ Multiple lines are fine, and whitespace in filenames can also be escaped using
70
70
POSIX shell lexing rules :
71
71
72
72
` ` ` yaml
73
- - uses: sigstore/gh-action-sigstore-python@v2.1.1
73
+ - uses: sigstore/gh-action-sigstore-python@v3.0.0
74
74
with:
75
75
inputs: |
76
76
./path/to/inputs/*.txt
@@ -90,7 +90,7 @@ The `identity-token` setting controls the OpenID Connect token provided to Fulci
90
90
workflow will use the credentials found in the GitHub Actions environment.
91
91
92
92
` ` ` yaml
93
- - uses: sigstore/gh-action-sigstore-python@v2.1.1
93
+ - uses: sigstore/gh-action-sigstore-python@v3.0.0
94
94
with:
95
95
inputs: file.txt
96
96
identity-token: ${{ IDENTITY_TOKEN }} # assigned elsewhere
@@ -106,7 +106,7 @@ Server during OAuth2.
106
106
Example :
107
107
108
108
` ` ` yaml
109
- - uses: sigstore/gh-action-sigstore-python@v2.1.1
109
+ - uses: sigstore/gh-action-sigstore-python@v3.0.0
110
110
with:
111
111
inputs: file.txt
112
112
oidc-client-id: alternative-sigstore-id
@@ -122,7 +122,7 @@ Connect Server during OAuth2.
122
122
Example :
123
123
124
124
` ` ` yaml
125
- - uses: sigstore/gh-action-sigstore-python@v2.1.1
125
+ - uses: sigstore/gh-action-sigstore-python@v3.0.0
126
126
with:
127
127
inputs: file.txt
128
128
oidc-client-secret: alternative-sigstore-secret
@@ -138,7 +138,7 @@ instead of the default production instances.
138
138
Example :
139
139
140
140
` ` ` yaml
141
- - uses: sigstore/gh-action-sigstore-python@v2.1.1
141
+ - uses: sigstore/gh-action-sigstore-python@v3.0.0
142
142
with:
143
143
inputs: file.txt
144
144
staging: true
@@ -161,7 +161,7 @@ and `verify-oidc-issuer` settings. Failing to pass these will produce an error.
161
161
Example :
162
162
163
163
` ` ` yaml
164
- - uses: sigstore/gh-action-sigstore-python@v2.1.1
164
+ - uses: sigstore/gh-action-sigstore-python@v3.0.0
165
165
with:
166
166
inputs: file.txt
167
167
verify: true
@@ -184,7 +184,7 @@ This setting may only be used in conjunction with `verify-oidc-issuer`.
184
184
Supplying it without `verify-oidc-issuer` will produce an error.
185
185
186
186
` ` ` yaml
187
- - uses: sigstore/gh-action-sigstore-python@v2.1.1
187
+ - uses: sigstore/gh-action-sigstore-python@v3.0.0
188
188
with:
189
189
inputs: file.txt
190
190
verify: true
@@ -209,7 +209,7 @@ Supplying it without `verify-cert-identity` will produce an error.
209
209
Example :
210
210
211
211
` ` ` yaml
212
- - uses: sigstore/gh-action-sigstore-python@v2.1.1
212
+ - uses: sigstore/gh-action-sigstore-python@v3.0.0
213
213
with:
214
214
inputs: file.txt
215
215
verify: true
@@ -231,7 +231,7 @@ workflow artifact retention period is used.
231
231
Example :
232
232
233
233
` ` ` yaml
234
- - uses: sigstore/gh-action-sigstore-python@v2.1.1
234
+ - uses: sigstore/gh-action-sigstore-python@v3.0.0
235
235
with:
236
236
inputs: file.txt
237
237
upload-signing-artifacts: true
@@ -258,7 +258,7 @@ permissions:
258
258
259
259
# ...
260
260
261
- - uses: sigstore/gh-action-sigstore-python@v2.1.1
261
+ - uses: sigstore/gh-action-sigstore-python@v3.0.0
262
262
with:
263
263
inputs: file.txt
264
264
release-signing-artifacts: true
@@ -298,7 +298,7 @@ permissions:
298
298
Example :
299
299
300
300
` ` ` yaml
301
- - uses: sigstore/gh-action-sigstore-python@v2.1.1
301
+ - uses: sigstore/gh-action-sigstore-python@v3.0.0
302
302
with:
303
303
inputs: file.txt
304
304
internal-be-careful-debug: true
0 commit comments