Skip to content

Commit c5bf6e1

Browse files
committed
Upgrade to go 1.20.1
1 parent 448b169 commit c5bf6e1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.bazelci/buildkite-install-go.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
set -euo pipefail
44

5-
pkg=go1.20.linux-amd64.tar.gz
5+
pkg=go1.20.1.linux-amd64.tar.gz
66

77
wget -o "$HOME/$pkg" "https://golang.org/dl/$pkg" 1>&2
88
tar -xv -C "$HOME" -f "$pkg" 1>&2

.github/workflows/golangci-lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/setup-go@v3
1515
with:
16-
go-version: '1.20'
16+
go-version: '1.20.1'
1717
- uses: actions/checkout@v3
1818
- name: golangci-lint
1919
uses: golangci/golangci-lint-action@v3

WORKSPACE

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_depe
2222

2323
go_rules_dependencies()
2424

25-
go_register_toolchains(version = "1.20")
25+
go_register_toolchains(version = "1.20.1")
2626

2727
http_archive(
2828
name = "rules_proto",

0 commit comments

Comments
 (0)