27
27
- uses : actions/checkout@v3
28
28
- name : install
29
29
run : python -m pip install .
30
- -
uses :
trailofbits/[email protected] .1
30
+ -
uses :
trailofbits/[email protected] .2
31
31
with :
32
32
inputs : file.txt
33
33
` ` `
@@ -45,15 +45,15 @@ provided.
45
45
To sign one or more files :
46
46
47
47
` ` ` yaml
48
- - uses: trailofbits/[email protected] .1
48
+ - uses: trailofbits/[email protected] .2
49
49
with:
50
50
inputs: file0.txt file1.txt file2.txt
51
51
` ` `
52
52
53
53
The `inputs` argument also supports file globbing :
54
54
55
55
` ` ` yaml
56
- - uses: trailofbits/[email protected] .1
56
+ - uses: trailofbits/[email protected] .2
57
57
with:
58
58
inputs: ./path/to/inputs/*.txt
59
59
` ` `
@@ -68,7 +68,7 @@ Server during OAuth2.
68
68
Example :
69
69
70
70
` ` ` yaml
71
- - uses: trailofbits/[email protected] .1
71
+ - uses: trailofbits/[email protected] .2
72
72
with:
73
73
inputs: file.txt
74
74
oidc-client-id: alternative-sigstore-id
@@ -84,7 +84,7 @@ Connect Server during OAuth2.
84
84
Example :
85
85
86
86
` ` ` yaml
87
- - uses: trailofbits/[email protected] .1
87
+ - uses: trailofbits/[email protected] .2
88
88
with:
89
89
inputs: file.txt
90
90
oidc-client-secret: alternative-sigstore-secret
@@ -100,7 +100,7 @@ The `no-default-files` setting controls whether the default output files (`{inpu
100
100
Example :
101
101
102
102
` ` ` yaml
103
- - uses: trailofbits/[email protected] .1
103
+ - uses: trailofbits/[email protected] .2
104
104
with:
105
105
inputs: file.txt
106
106
no-default-files: true
@@ -116,7 +116,7 @@ not work when signing multiple input files.
116
116
Example :
117
117
118
118
` ` ` yaml
119
- - uses: trailofbits/[email protected] .1
119
+ - uses: trailofbits/[email protected] .2
120
120
with:
121
121
inputs: file.txt
122
122
output-signature: custom-signature-filename.sig
@@ -125,7 +125,7 @@ Example:
125
125
However, this example is invalid :
126
126
127
127
` ` ` yaml
128
- - uses: trailofbits/[email protected] .1
128
+ - uses: trailofbits/[email protected] .2
129
129
with:
130
130
inputs: file0.txt file1.txt file2.txt
131
131
output-signature: custom-signature-filename.sig
@@ -141,7 +141,7 @@ not work when signing multiple input files.
141
141
Example :
142
142
143
143
` ` ` yaml
144
- - uses: trailofbits/[email protected] .1
144
+ - uses: trailofbits/[email protected] .2
145
145
with:
146
146
inputs: file.txt
147
147
output-certificate: custom-certificate-filename.crt
@@ -150,7 +150,7 @@ Example:
150
150
However, this example is invalid :
151
151
152
152
` ` ` yaml
153
- - uses: trailofbits/[email protected] .1
153
+ - uses: trailofbits/[email protected] .2
154
154
with:
155
155
inputs: file0.txt file1.txt file2.txt
156
156
output-certificate: custom-certificate-filename.crt
@@ -166,7 +166,7 @@ overwritten.
166
166
Example :
167
167
168
168
` ` ` yaml
169
- - uses: trailofbits/[email protected] .1
169
+ - uses: trailofbits/[email protected] .2
170
170
with:
171
171
inputs: file.txt
172
172
overwrite: true
@@ -182,7 +182,7 @@ from. This setting cannot be used in combination with the `staging` setting.
182
182
Example :
183
183
184
184
` ` ` yaml
185
- - uses: trailofbits/[email protected] .1
185
+ - uses: trailofbits/[email protected] .2
186
186
with:
187
187
inputs: file.txt
188
188
fulcio-url: https://fulcio.sigstage.dev
@@ -198,7 +198,7 @@ cannot be used in combination with the `staging` setting.
198
198
Example :
199
199
200
200
` ` ` yaml
201
- - uses: trailofbits/[email protected] .1
201
+ - uses: trailofbits/[email protected] .2
202
202
with:
203
203
inputs: file.txt
204
204
rekor-url: https://rekor.sigstage.dev
@@ -214,7 +214,7 @@ in combination with the `staging` setting.
214
214
Example :
215
215
216
216
` ` ` yaml
217
- - uses: trailofbits/[email protected] .1
217
+ - uses: trailofbits/[email protected] .2
218
218
with:
219
219
inputs: file.txt
220
220
ctfe: ./path/to/ctfe.pub
@@ -230,7 +230,7 @@ be used in combination with `staging` setting.
230
230
Example :
231
231
232
232
` ` ` yaml
233
- - uses: trailofbits/[email protected] .1
233
+ - uses: trailofbits/[email protected] .2
234
234
with:
235
235
inputs: file.txt
236
236
ctfe: ./path/to/rekor.pub
@@ -246,7 +246,7 @@ from.
246
246
Example :
247
247
248
248
` ` ` yaml
249
- - uses: trailofbits/[email protected] .1
249
+ - uses: trailofbits/[email protected] .2
250
250
with:
251
251
inputs: file.txt
252
252
oidc-issuer: https://oauth2.sigstage.dev/auth
@@ -262,7 +262,7 @@ instead of the default production instances.
262
262
Example :
263
263
264
264
` ` ` yaml
265
- - uses: trailofbits/[email protected] .1
265
+ - uses: trailofbits/[email protected] .2
266
266
with:
267
267
inputs: file.txt
268
268
staging: true
@@ -289,7 +289,7 @@ Example:
289
289
Example :
290
290
291
291
` ` ` yaml
292
- - uses: trailofbits/[email protected] .1
292
+ - uses: trailofbits/[email protected] .2
293
293
with:
294
294
inputs: file.txt
295
295
internal-be-careful-debug: true
0 commit comments