Skip to content

Commit 1aaf01d

Browse files
furkatgofurov7Ankitasw
authored andcommitted
Bump golang to 1.20.6
Signed-off-by: Furkat Gofurov <[email protected]>
1 parent 8167d6d commit 1aaf01d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/book/src/development/development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
### Install prerequisites
66

77
1. Install [go][go]
8-
- Get the latest patch version for go v1.19.
8+
- Get the latest patch version for go v1.20.
99
2. Install [jq][jq]
1010
- `brew install jq` on macOS.
1111
- `chocolatey install jq` on Windows.

docs/triage-party/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# limitations under the License.
1616

1717

18-
FROM golang:1.20.5 as builder
18+
FROM golang:1.20.6 as builder
1919

2020
RUN go get github.com/google/triage-party/cmd/server
2121
RUN go install github.com/google/triage-party/cmd/server@latest

hack/ensure-go.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ EOF
3131
local go_version
3232
IFS=" " read -ra go_version <<< "$(go version)"
3333
local minimum_go_version
34-
minimum_go_version=go1.20.0
34+
minimum_go_version=go1.20.5
3535
if [[ "${minimum_go_version}" != $(echo -e "${minimum_go_version}\n${go_version[2]}" | sort -s -t. -k 1,1 -k 2,2n -k 3,3n | head -n1) && "${go_version[2]}" != "devel" ]]; then
3636
cat <<EOF
3737
Detected go version: ${go_version[*]}.

0 commit comments

Comments
 (0)