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

ci: update tools and fix check-images step #71

Merged
merged 4 commits into from
Dec 29, 2023
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
2 changes: 1 addition & 1 deletion .buildkite/tools/check-image-names/check-image-names.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"

"github.com/pkg/errors"
"github.com/sourcegraph/sourcegraph/enterprise/dev/ci/images"
"github.com/sourcegraph/sourcegraph/dev/ci/images"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion .buildkite/tools/enforce-tags/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os/exec"
"strings"

"github.com/sourcegraph/sourcegraph/enterprise/dev/ci/images"
"github.com/sourcegraph/sourcegraph/dev/ci/images"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
golang 1.19.7
golang 1.21.5
yarn 1.22.4
kubectl 1.25.9
fd 7.4.0
kustomize 4.5.7
shfmt 3.1.0
nodejs 12.10.0
nodejs 20.8.1
python system
23 changes: 10 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,20 +1,17 @@
module github.com/sourcegraph/deploy-sourcegraph
module sourcegraph/deploy-sourcegraph-k8s

go 1.16
go 1.21.5

require (
cloud.google.com/go/logging v1.4.2 // indirect
github.com/docker/docker v1.13.1 // indirect
github.com/fatih/color v1.10.0 // indirect
github.com/pkg/errors v0.9.1
github.com/pulumi/pulumi v1.12.0
github.com/sethgrid/pester v1.1.0
github.com/sourcegraph/sourcegraph/enterprise/dev/ci/images v0.0.0-20221215223216-8c996a77af64
github.com/sourcegraph/sourcegraph/dev/ci/images v0.0.0-20231229114136-300ec6158254
github.com/sourcegraph/update-docker-tags v0.10.0
github.com/spf13/cobra v1.1.3 // indirect
github.com/stretchr/testify v1.7.0
golang.org/x/sys v0.0.0-20210510120138-977fb7262007 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
github.com/stretchr/testify v1.8.4
)

replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.4.3+incompatible
require (
github.com/Masterminds/semver/v3 v3.1.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
Loading
Loading