Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING CHANGE: change Go import from sethvargo -> GoogleCloudPlatform #86

Merged
merged 1 commit into from
Jun 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ service.
## License

This library is licensed under Apache 2.0. Full license text is available in
[LICENSE](https://github.com/sethvargo/gcr-cleaner/tree/master/LICENSE).
[LICENSE](https://github.com/GoogleCloudPlatform/gcr-cleaner/tree/master/LICENSE).

[artifact-registry]: https://cloud.google.com/artifact-registry
[cloud-build]: https://cloud.google.com/build/
Expand All @@ -292,6 +292,6 @@ This library is licensed under Apache 2.0. Full license text is available in
[cloud-sdk]: https://cloud.google.com/sdk
[cloud-shell]: https://cloud.google.com/shell
[container-registry]: https://cloud.google.com/container-registry
[gcr-cleaner-godoc]: https://godoc.org/github.com/sethvargo/gcr-cleaner/pkg/gcrcleaner
[gcr-cleaner-godoc]: https://godoc.org/github.com/GoogleCloudPlatform/gcr-cleaner/pkg/gcrcleaner
[gcrgc.sh]: https://gist.github.com/ahmetb/7ce6d741bd5baa194a3fac6b1fec8bb7
[go-re]: https://golang.org/pkg/regexp/syntax/
8 changes: 4 additions & 4 deletions cloudbuild/cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

steps:
- id: 'build-cli'
name: 'docker:19'
name: 'docker:20'
args: [
'build',
'--build-arg', 'SERVICE=gcr-cleaner-cli',
Expand All @@ -27,7 +27,7 @@ steps:
waitFor: ['-']

- id: 'build-server'
name: 'docker:19'
name: 'docker:20'
args: [
'build',
'--build-arg', 'SERVICE=gcr-cleaner-server',
Expand All @@ -40,7 +40,7 @@ steps:
waitFor: ['-']

- id: 'push-cli'
name: 'docker:19'
name: 'docker:20'
entrypoint: '/bin/sh'
args:
- '-euo'
Expand All @@ -54,7 +54,7 @@ steps:
waitFor: ['build-cli']

- id: 'push-server'
name: 'docker:19'
name: 'docker:20'
entrypoint: '/bin/sh'
args:
- '-euo'
Expand Down
2 changes: 1 addition & 1 deletion cmd/gcr-cleaner-cli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ import (
"syscall"
"time"

"github.com/GoogleCloudPlatform/gcr-cleaner/pkg/gcrcleaner"
gcrauthn "github.com/google/go-containerregistry/pkg/authn"
gcrgoogle "github.com/google/go-containerregistry/pkg/v1/google"
"github.com/hashicorp/go-multierror"
"github.com/sethvargo/gcr-cleaner/pkg/gcrcleaner"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion cmd/gcr-cleaner-server/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ import (
"syscall"
"time"

"github.com/GoogleCloudPlatform/gcr-cleaner/pkg/gcrcleaner"
gcrauthn "github.com/google/go-containerregistry/pkg/authn"
gcrgoogle "github.com/google/go-containerregistry/pkg/v1/google"
"github.com/sethvargo/gcr-cleaner/pkg/gcrcleaner"
)

var (
Expand Down
22 changes: 11 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,31 +1,31 @@
module github.com/sethvargo/gcr-cleaner
module github.com/GoogleCloudPlatform/gcr-cleaner

go 1.18

require (
github.com/gammazero/workerpool v1.1.2
github.com/google/go-containerregistry v0.8.0
github.com/google/go-containerregistry v0.9.0
github.com/hashicorp/go-multierror v1.1.1
)

require (
cloud.google.com/go/compute v1.5.0 // indirect
github.com/docker/cli v20.10.14+incompatible // indirect
cloud.google.com/go/compute v1.6.1 // indirect
github.com/docker/cli v20.10.16+incompatible // indirect
github.com/docker/distribution v2.8.1+incompatible // indirect
github.com/docker/docker v20.10.14+incompatible // indirect
github.com/docker/docker v20.10.16+incompatible // indirect
github.com/docker/docker-credential-helpers v0.6.4 // indirect
github.com/gammazero/deque v0.1.1 // indirect
github.com/gammazero/deque v0.1.2 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/opencontainers/image-spec v1.0.2 // indirect
github.com/opencontainers/image-spec v1.0.3-0.20220114050600-8b9d41f48198 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sirupsen/logrus v1.8.1 // indirect
golang.org/x/net v0.0.0-20220407224826-aac1ed45d8e3 // indirect
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a // indirect
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
golang.org/x/sys v0.0.0-20220408201424-a24fb2fb8a0f // indirect
golang.org/x/net v0.0.0-20220531201128-c960675eff93 // indirect
golang.org/x/oauth2 v0.0.0-20220524215830-622c5d57e401 // indirect
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
)
Loading