Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit 5f2fbbb

Browse files
authored
go: update to 1.20.10 (#57525)
1 parent 8eb5d83 commit 5f2fbbb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/sg-setup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install Go
2525
uses: actions/setup-go@v2
2626
with:
27-
go-version: 1.20.9
27+
go-version: 1.20.10
2828

2929
- name: Install asdf plugins
3030
uses: asdf-vm/actions/install@v1

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
golang 1.20.9
1+
golang 1.20.10
22
nodejs 18.17.1
33
fd 8.6.0
44
shfmt 3.5.0

WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ go_rules_dependencies()
314314

315315
go_register_toolchains(
316316
nogo = "@//:sg_nogo",
317-
version = "1.20.9",
317+
version = "1.20.10",
318318
)
319319

320320
linter_dependencies()

dev/sg/checks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var checks = map[string]check.CheckFunc{
3434
"asdf": check.CommandOutputContains("asdf", "version"),
3535
"git": check.Combine(check.InPath("git"), checkGitVersion(">= 2.34.1")),
3636
"pnpm": check.Combine(check.InPath("pnpm"), checkPnpmVersion(">= 8.3.0")),
37-
"go": check.Combine(check.InPath("go"), checkGoVersion("~> 1.20.9")),
37+
"go": check.Combine(check.InPath("go"), checkGoVersion("~> 1.20.10")),
3838
"node": check.Combine(check.InPath("node"), check.CommandOutputContains(`node -e "console.log(\"foobar\")"`, "foobar")),
3939
"rust": check.Combine(check.InPath("cargo"), check.CommandOutputContains(`cargo version`, "1.58.0")),
4040
"docker-installed": check.WrapErrMessage(check.InPath("docker"), "if Docker is installed and the check fails, you might need to start Docker.app and restart terminal and 'sg setup'"),

0 commit comments

Comments
 (0)