Skip to content

Commit 53c4426

Browse files
authored
ci: update tools and fix check-images step (#71)
1 parent c45e428 commit 53c4426

File tree

5 files changed

+21
-974
lines changed

5 files changed

+21
-974
lines changed

.buildkite/tools/check-image-names/check-image-names.go

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

1212
"github.com/pkg/errors"
13-
"github.com/sourcegraph/sourcegraph/enterprise/dev/ci/images"
13+
"github.com/sourcegraph/sourcegraph/dev/ci/images"
1414
)
1515

1616
var (

.buildkite/tools/enforce-tags/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"os/exec"
88
"strings"
99

10-
"github.com/sourcegraph/sourcegraph/enterprise/dev/ci/images"
10+
"github.com/sourcegraph/sourcegraph/dev/ci/images"
1111
)
1212

1313
func main() {

.tool-versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
golang 1.19.7
1+
golang 1.21.5
22
yarn 1.22.4
33
kubectl 1.25.9
44
fd 7.4.0
55
kustomize 4.5.7
66
shfmt 3.1.0
7-
nodejs 12.10.0
7+
nodejs 20.8.1
88
python system

go.mod

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
1-
module github.com/sourcegraph/deploy-sourcegraph
1+
module sourcegraph/deploy-sourcegraph-k8s
22

3-
go 1.16
3+
go 1.21.5
44

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

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

0 commit comments

Comments
 (0)