Skip to content

Commit

Permalink
Bump golang version
Browse files Browse the repository at this point in the history
  • Loading branch information
marquiz committed Jan 17, 2025
1 parent 9494b06 commit e89939a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ GO_FMT := gofmt
GO_CYCLO := gocyclo
GO_LINT := golint
GO_CILINT := golangci-lint
GO_VERSION ?= 1.22.6
GO_VERSION ?= 1.22.11
GOLICENSES_VERSION ?= v1.5.0

# TEST_TAGS is the set of extra build tags passed for tests.
Expand Down
2 changes: 1 addition & 1 deletion demo/lib/distro.bash
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# shellcheck disable=SC2120
GO_URLDIR=https://golang.org/dl
GO_VERSION=1.22.6
GO_VERSION=1.22.11
GOLANG_URL=$GO_URLDIR/go$GO_VERSION.linux-amd64.tar.gz
CRICTL_VERSION=${CRICTL_VERSION:-"v1.25.0"}
MINIKUBE_VERSION=${MINIKUBE_VERSION:-v1.27.0}
Expand Down
6 changes: 3 additions & 3 deletions docs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ FROM sphinxdoc/sphinx:5.3.0
RUN apt-get update && apt-get install -y wget git

# Note: Any golang version that can 'go list -m -f {{.Variable}}' is fine...
ADD https://go.dev/dl/go1.18.3.linux-amd64.tar.gz /
ADD https://go.dev/dl/go1.21.11.linux-amd64.tar.gz /

RUN tar -C /usr/local -xzf /go1.18.3.linux-amd64.tar.gz && \
rm /go1.18.3.linux-amd64.tar.gz
RUN tar -C /usr/local -xzf /go1.22.11.linux-amd64.tar.gz && \
rm /go1.22.11.linux-amd64.tar.gz

ENV PATH=$PATH:/usr/local/go/bin

Expand Down

0 comments on commit e89939a

Please sign in to comment.