File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ func usage() {
50
50
func parseArgs () {
51
51
for i := 2 ; i < len (os .Args ); {
52
52
switch os .Args [i ] {
53
- // TODO: support staging
53
+ // TODO: support staging (see https://github.com/sigstore/cosign/issues/2434)
54
54
//
55
55
// Today cosign signing does not yet use sigstore-go, and so we would
56
56
// need to make some clever invocation of `cosign initialize` to
@@ -112,6 +112,7 @@ func main() {
112
112
args = append (args , "verify-blob" )
113
113
114
114
// TODO: for now, we handle `verify` by constructing a bundle
115
+ // (see https://github.com/sigstore/cosign/issues/3700)
115
116
//
116
117
// Today cosign only supports `--trusted-root` with the new bundle
117
118
// format. When cosign supports `--trusted-root` with detached signed
Original file line number Diff line number Diff line change @@ -1628,12 +1628,6 @@ func TestSignBlobNewBundle(t *testing.T) {
1628
1628
t .Fatal (err )
1629
1629
}
1630
1630
1631
- trustedRoot := "{\" mediaType\" :\" application/vnd.dev.sigstore.trustedroot+json;version=0.1\" }"
1632
- trustedRootPath := filepath .Join (td1 , "trusted_root.json" )
1633
- if err := os .WriteFile (trustedRootPath , []byte (trustedRoot ), 0644 ); err != nil {
1634
- t .Fatal (err )
1635
- }
1636
-
1637
1631
bundlePath := filepath .Join (td1 , "bundle.sigstore.json" )
1638
1632
1639
1633
ctx := context .Background ()
You can’t perform that action at this time.
0 commit comments