forked from sourcegraph/deploy-sourcegraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update tools go.mod and fix package import (sourcegraph#4288)
* update tools go.mod and fix package import * bump go in .tool-versions * bump nodejs and kubectl * update test specific .tool-versions * use pnpm instead of yarn in integration test * update pnpm in main .tool-versions * move prettier to root and install from there * prettier updates * update update-tags go version
- Loading branch information
Showing
27 changed files
with
2,413 additions
and
2,718 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
golang 1.19.8 | ||
yarn 1.22.4 | ||
kubectl 1.21.7 | ||
golang 1.21.5 | ||
pnpm 8.9.2 | ||
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"[yaml]": { | ||
"editor.formatOnSave": false | ||
"editor.formatOnSave": false, | ||
}, | ||
"[shellscript]": { | ||
"editor.defaultFormatter": "foxundermoon.shell-format", | ||
"editor.formatOnSave": true | ||
"editor.formatOnSave": true, | ||
}, | ||
"shellformat.flag": "-i 2 -ci" | ||
"shellformat.flag": "-i 2 -ci", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
module github.com/sourcegraph/deploy-sourcegraph | ||
module sourcegraph/deploy-sourcegraph | ||
|
||
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 | ||
) |
Oops, something went wrong.