Skip to content

Commit 000560d

Browse files
Merge pull request #2 from errordeveloper/rename
Rename repository
2 parents e312c24 + f96c525 commit 000560d

35 files changed

+103
-103
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ jobs:
2222
GHCR_PASSWORD: ${{ secrets.GITHUB_TOKEN }}
2323
with:
2424
entrypoint: imagine
25-
args: build --platform linux/amd64,linux/arm64 --config build.yaml --upstream-branch origin/main --registry ghcr.io/docker --push
25+
args: build --platform linux/amd64,linux/arm64 --config build.yaml --upstream-branch origin/main --registry ghcr.io/errordeveloper --push

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Tape has the following commands:
8383
First, clone the repo and build `tape` binary:
8484

8585
```console
86-
git clone -q [email protected]:docker/labs-brown-tape.git ; cd ./labs-brown-tape
86+
git clone -q [email protected]:errordeveloper/tape.git ; cd ./labs-brown-tape
8787
(cd ./tape ; go build)
8888
```
8989

attest/attest.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package attest
33
import (
44
"fmt"
55

6-
"github.com/docker/labs-brown-tape/attest/digest"
7-
"github.com/docker/labs-brown-tape/attest/types"
8-
"github.com/docker/labs-brown-tape/attest/vcs/git"
6+
"github.com/errordeveloper/tape/attest/digest"
7+
"github.com/errordeveloper/tape/attest/types"
8+
"github.com/errordeveloper/tape/attest/vcs/git"
99
)
1010

1111
var (

attest/manifest/images.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package manifest
33
import (
44
"cmp"
55

6-
attestTypes "github.com/docker/labs-brown-tape/attest/types"
7-
manifestTypes "github.com/docker/labs-brown-tape/manifest/types"
6+
attestTypes "github.com/errordeveloper/tape/attest/types"
7+
manifestTypes "github.com/errordeveloper/tape/manifest/types"
88
)
99

1010
const (

attest/manifest/manifest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package manifest
33
import (
44
"cmp"
55

6-
"github.com/docker/labs-brown-tape/attest/types"
6+
"github.com/errordeveloper/tape/attest/types"
77
)
88

99
const (

attest/registry.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"path/filepath"
99
"slices"
1010

11-
"github.com/docker/labs-brown-tape/attest/digest"
12-
"github.com/docker/labs-brown-tape/attest/manifest"
13-
"github.com/docker/labs-brown-tape/attest/types"
11+
"github.com/errordeveloper/tape/attest/digest"
12+
"github.com/errordeveloper/tape/attest/manifest"
13+
"github.com/errordeveloper/tape/attest/types"
1414
"github.com/fxamacker/cbor/v2"
1515
)
1616

attest/registry_test.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ import (
1111
"github.com/google/go-containerregistry/pkg/crane"
1212
. "github.com/onsi/gomega"
1313

14-
. "github.com/docker/labs-brown-tape/attest"
15-
"github.com/docker/labs-brown-tape/attest/manifest"
16-
"github.com/docker/labs-brown-tape/manifest/imageresolver"
17-
"github.com/docker/labs-brown-tape/manifest/imagescanner"
18-
"github.com/docker/labs-brown-tape/manifest/loader"
19-
"github.com/docker/labs-brown-tape/manifest/testdata"
20-
"github.com/docker/labs-brown-tape/oci"
21-
// "github.com/docker/labs-brown-tape/trex"
14+
. "github.com/errordeveloper/tape/attest"
15+
"github.com/errordeveloper/tape/attest/manifest"
16+
"github.com/errordeveloper/tape/manifest/imageresolver"
17+
"github.com/errordeveloper/tape/manifest/imagescanner"
18+
"github.com/errordeveloper/tape/manifest/loader"
19+
"github.com/errordeveloper/tape/manifest/testdata"
20+
"github.com/errordeveloper/tape/oci"
21+
// "github.com/errordeveloper/tape/trex"
2222
)
2323

2424
var (

attest/types/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
toto "github.com/in-toto/in-toto-golang/in_toto"
1313

14-
"github.com/docker/labs-brown-tape/attest/digest"
14+
"github.com/errordeveloper/tape/attest/digest"
1515
)
1616

1717
type (

attest/vcs/git/git.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"github.com/go-git/go-git/v5/plumbing/transport"
1414
"github.com/go-git/go-git/v5/utils/ioutil"
1515

16-
"github.com/docker/labs-brown-tape/attest/digest"
17-
"github.com/docker/labs-brown-tape/attest/types"
16+
"github.com/errordeveloper/tape/attest/digest"
17+
"github.com/errordeveloper/tape/attest/types"
1818
)
1919

2020
const (

attest/vcs/git/git_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
. "github.com/onsi/gomega"
99
"github.com/onsi/gomega/types"
1010

11-
. "github.com/docker/labs-brown-tape/attest/vcs/git"
11+
. "github.com/errordeveloper/tape/attest/vcs/git"
1212
)
1313

1414
type gitTestCases struct {

build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ kind: ImagineBuildConfig
22
apiVersion: v1alpha1
33

44
spec:
5-
name: labs-brown-tape
5+
name: tape
66
dir: ./

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/docker/labs-brown-tape
1+
module github.com/errordeveloper/tape
22

33
go 1.21
44

manifest/image/alias_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66

77
. "github.com/onsi/gomega"
88

9-
. "github.com/docker/labs-brown-tape/manifest/image"
9+
. "github.com/errordeveloper/tape/manifest/image"
1010
)
1111

1212
func TestMakeAliasesForNames(t *testing.T) {

manifest/image/image.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package image
33
import (
44
kustomize "sigs.k8s.io/kustomize/api/types"
55

6-
"github.com/docker/labs-brown-tape/attest/digest"
6+
"github.com/errordeveloper/tape/attest/digest"
77
)
88

99
type (

manifest/imagecopier/imagecopier.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"encoding/hex"
77
"hash"
88

9-
"github.com/docker/labs-brown-tape/manifest/types"
10-
"github.com/docker/labs-brown-tape/oci"
9+
"github.com/errordeveloper/tape/manifest/types"
10+
"github.com/errordeveloper/tape/oci"
1111
)
1212

1313
type ImageCopier interface {

manifest/imagecopier/imagecopier_test.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ import (
77

88
. "github.com/onsi/gomega"
99

10-
. "github.com/docker/labs-brown-tape/manifest/imagecopier"
11-
"github.com/docker/labs-brown-tape/manifest/imageresolver"
12-
"github.com/docker/labs-brown-tape/manifest/imagescanner"
13-
"github.com/docker/labs-brown-tape/manifest/loader"
14-
"github.com/docker/labs-brown-tape/manifest/testdata"
15-
"github.com/docker/labs-brown-tape/oci"
16-
"github.com/docker/labs-brown-tape/trex"
10+
. "github.com/errordeveloper/tape/manifest/imagecopier"
11+
"github.com/errordeveloper/tape/manifest/imageresolver"
12+
"github.com/errordeveloper/tape/manifest/imagescanner"
13+
"github.com/errordeveloper/tape/manifest/loader"
14+
"github.com/errordeveloper/tape/manifest/testdata"
15+
"github.com/errordeveloper/tape/oci"
16+
"github.com/errordeveloper/tape/trex"
1717
"github.com/google/go-containerregistry/pkg/crane"
1818
)
1919

manifest/imageresolver/imageresolver.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66

77
kimage "sigs.k8s.io/kustomize/api/image"
88

9-
"github.com/docker/labs-brown-tape/manifest/types"
10-
"github.com/docker/labs-brown-tape/oci"
9+
"github.com/errordeveloper/tape/manifest/types"
10+
"github.com/errordeveloper/tape/oci"
1111
)
1212

1313
type (

manifest/imageresolver/imageresolver_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import (
66

77
. "github.com/onsi/gomega"
88

9-
. "github.com/docker/labs-brown-tape/manifest/imageresolver"
10-
"github.com/docker/labs-brown-tape/manifest/imagescanner"
11-
"github.com/docker/labs-brown-tape/manifest/loader"
12-
"github.com/docker/labs-brown-tape/manifest/testdata"
13-
"github.com/docker/labs-brown-tape/manifest/types"
9+
. "github.com/errordeveloper/tape/manifest/imageresolver"
10+
"github.com/errordeveloper/tape/manifest/imagescanner"
11+
"github.com/errordeveloper/tape/manifest/loader"
12+
"github.com/errordeveloper/tape/manifest/testdata"
13+
"github.com/errordeveloper/tape/manifest/types"
1414
)
1515

1616
func TestImageResover(t *testing.T) {

manifest/imagescanner/filter.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"sigs.k8s.io/kustomize/api/filters/filtersutil"
88
"sigs.k8s.io/kustomize/api/filters/fsslice"
99

10-
"github.com/docker/labs-brown-tape/attest/digest"
11-
"github.com/docker/labs-brown-tape/manifest/types"
10+
"github.com/errordeveloper/tape/attest/digest"
11+
"github.com/errordeveloper/tape/manifest/types"
1212
)
1313

1414
type Filter struct {

manifest/imagescanner/imagescanner.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
kimage "sigs.k8s.io/kustomize/api/image"
1212
"sigs.k8s.io/kustomize/kyaml/kio"
1313

14-
"github.com/docker/labs-brown-tape/attest"
15-
"github.com/docker/labs-brown-tape/attest/digest"
16-
"github.com/docker/labs-brown-tape/manifest/types"
14+
"github.com/errordeveloper/tape/attest"
15+
"github.com/errordeveloper/tape/attest/digest"
16+
"github.com/errordeveloper/tape/manifest/types"
1717
)
1818

1919
type ImageScanner interface {

manifest/imagescanner/imagescanner_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55

66
. "github.com/onsi/gomega"
77

8-
. "github.com/docker/labs-brown-tape/manifest/imagescanner"
9-
"github.com/docker/labs-brown-tape/manifest/loader"
10-
"github.com/docker/labs-brown-tape/manifest/testdata"
8+
. "github.com/errordeveloper/tape/manifest/imagescanner"
9+
"github.com/errordeveloper/tape/manifest/loader"
10+
"github.com/errordeveloper/tape/manifest/testdata"
1111
)
1212

1313
func TestImageScanner(t *testing.T) {

manifest/loader/loader_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66

77
. "github.com/onsi/gomega"
88

9-
. "github.com/docker/labs-brown-tape/manifest/loader"
10-
"github.com/docker/labs-brown-tape/manifest/testdata"
9+
. "github.com/errordeveloper/tape/manifest/loader"
10+
"github.com/errordeveloper/tape/manifest/testdata"
1111
)
1212

1313
func TestLoader(t *testing.T) {

manifest/packager/packager.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"context"
55
"time"
66

7-
attestTypes "github.com/docker/labs-brown-tape/attest/types"
8-
"github.com/docker/labs-brown-tape/oci"
7+
attestTypes "github.com/errordeveloper/tape/attest/types"
8+
"github.com/errordeveloper/tape/oci"
99
)
1010

1111
type Packager interface {

manifest/packager/packager_test.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ import (
88
"github.com/google/go-containerregistry/pkg/crane"
99
. "github.com/onsi/gomega"
1010

11-
"github.com/docker/labs-brown-tape/attest"
12-
"github.com/docker/labs-brown-tape/attest/manifest"
13-
"github.com/docker/labs-brown-tape/manifest/imagecopier"
14-
"github.com/docker/labs-brown-tape/manifest/imageresolver"
15-
"github.com/docker/labs-brown-tape/manifest/imagescanner"
16-
"github.com/docker/labs-brown-tape/manifest/loader"
17-
. "github.com/docker/labs-brown-tape/manifest/packager"
18-
"github.com/docker/labs-brown-tape/manifest/testdata"
19-
"github.com/docker/labs-brown-tape/manifest/updater"
20-
"github.com/docker/labs-brown-tape/oci"
21-
"github.com/docker/labs-brown-tape/trex"
11+
"github.com/errordeveloper/tape/attest"
12+
"github.com/errordeveloper/tape/attest/manifest"
13+
"github.com/errordeveloper/tape/manifest/imagecopier"
14+
"github.com/errordeveloper/tape/manifest/imageresolver"
15+
"github.com/errordeveloper/tape/manifest/imagescanner"
16+
"github.com/errordeveloper/tape/manifest/loader"
17+
. "github.com/errordeveloper/tape/manifest/packager"
18+
"github.com/errordeveloper/tape/manifest/testdata"
19+
"github.com/errordeveloper/tape/manifest/updater"
20+
"github.com/errordeveloper/tape/oci"
21+
"github.com/errordeveloper/tape/trex"
2222
)
2323

2424
var (

manifest/testdata/testdata.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"path/filepath"
55
"testing"
66

7-
"github.com/docker/labs-brown-tape/manifest/types"
7+
"github.com/errordeveloper/tape/manifest/types"
88
)
99

1010
type TestCase struct {

manifest/types/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package types
33
import (
44
kustomize "sigs.k8s.io/kustomize/api/types"
55

6-
"github.com/docker/labs-brown-tape/manifest/image"
6+
"github.com/errordeveloper/tape/manifest/image"
77
)
88

99
const (

manifest/updater/updater.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import (
1010
"sigs.k8s.io/kustomize/kyaml/kio"
1111
"sigs.k8s.io/kustomize/kyaml/kio/kioutil"
1212

13-
"github.com/docker/labs-brown-tape/attest/digest"
14-
attestTypes "github.com/docker/labs-brown-tape/attest/types"
15-
"github.com/docker/labs-brown-tape/manifest/types"
16-
manifestTypes "github.com/docker/labs-brown-tape/manifest/types"
13+
"github.com/errordeveloper/tape/attest/digest"
14+
attestTypes "github.com/errordeveloper/tape/attest/types"
15+
"github.com/errordeveloper/tape/manifest/types"
16+
manifestTypes "github.com/errordeveloper/tape/manifest/types"
1717
)
1818

1919
type Updater interface {

manifest/updater/updater_test.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ import (
88
"github.com/google/go-containerregistry/pkg/crane"
99
. "github.com/onsi/gomega"
1010

11-
"github.com/docker/labs-brown-tape/manifest/imagecopier"
12-
"github.com/docker/labs-brown-tape/manifest/imageresolver"
13-
"github.com/docker/labs-brown-tape/manifest/imagescanner"
14-
"github.com/docker/labs-brown-tape/manifest/loader"
15-
"github.com/docker/labs-brown-tape/manifest/testdata"
16-
"github.com/docker/labs-brown-tape/manifest/types"
17-
. "github.com/docker/labs-brown-tape/manifest/updater"
18-
"github.com/docker/labs-brown-tape/oci"
19-
"github.com/docker/labs-brown-tape/trex"
11+
"github.com/errordeveloper/tape/manifest/imagecopier"
12+
"github.com/errordeveloper/tape/manifest/imageresolver"
13+
"github.com/errordeveloper/tape/manifest/imagescanner"
14+
"github.com/errordeveloper/tape/manifest/loader"
15+
"github.com/errordeveloper/tape/manifest/testdata"
16+
"github.com/errordeveloper/tape/manifest/types"
17+
. "github.com/errordeveloper/tape/manifest/updater"
18+
"github.com/errordeveloper/tape/oci"
19+
"github.com/errordeveloper/tape/trex"
2020
)
2121

2222
var (

oci/artefact.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323
"github.com/google/go-containerregistry/pkg/v1/tarball"
2424
typesv1 "github.com/google/go-containerregistry/pkg/v1/types"
2525

26-
attestTypes "github.com/docker/labs-brown-tape/attest/types"
27-
manifestTypes "github.com/docker/labs-brown-tape/manifest/types"
26+
attestTypes "github.com/errordeveloper/tape/attest/types"
27+
manifestTypes "github.com/errordeveloper/tape/manifest/types"
2828
)
2929

3030
const (

tape/app/app.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
flags "github.com/thought-machine/go-flags"
1010

11-
"github.com/docker/labs-brown-tape/logger"
11+
"github.com/errordeveloper/tape/logger"
1212
)
1313

1414
type OutputFormat string

tape/app/images.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ import (
1515
"github.com/secure-systems-lab/go-securesystemslib/dsse"
1616
"github.com/sigstore/sigstore/pkg/cryptoutils"
1717

18-
"github.com/docker/labs-brown-tape/manifest/imageresolver"
19-
"github.com/docker/labs-brown-tape/manifest/imagescanner"
20-
"github.com/docker/labs-brown-tape/manifest/loader"
21-
"github.com/docker/labs-brown-tape/manifest/types"
22-
"github.com/docker/labs-brown-tape/oci"
18+
"github.com/errordeveloper/tape/manifest/imageresolver"
19+
"github.com/errordeveloper/tape/manifest/imagescanner"
20+
"github.com/errordeveloper/tape/manifest/loader"
21+
"github.com/errordeveloper/tape/manifest/types"
22+
"github.com/errordeveloper/tape/oci"
2323
)
2424

2525
type TapeImagesCommand struct {

0 commit comments

Comments
 (0)