Skip to content

Commit 2b1d642

Browse files
committed
all: update Go to v1.20.2
Release notes: https://go.dev/doc/go1.20 https://go.dev/doc/devel/release#go1.20.minor Signed-off-by: Robin Hahling <[email protected]>
1 parent f162a1a commit 2b1d642

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
2323
- uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9
2424
with:
25-
go-version: '1.19.5'
25+
go-version: '1.20.2'
2626
- name: Run static checks
2727
uses: golangci/golangci-lint-action@08e2f20817b15149a52b5b3ebe7de50aff2ba8c5
2828
with:

.golangci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Also https://github.com/cilium/cilium/blob/master/.golangci.yaml as a
33
# reference.
44
run:
5-
go: '1.19'
5+
go: '1.20'
66
timeout: 3m # default is 1m
77
linters:
88
disable-all: true

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ hubble:
2525
$(GO_BUILD) $(if $(GO_TAGS),-tags $(GO_TAGS)) -ldflags "-w -s -X 'github.com/cilium/hubble/pkg.GitBranch=${GIT_BRANCH}' -X 'github.com/cilium/hubble/pkg.GitHash=$(GIT_HASH)' -X 'github.com/cilium/hubble/pkg.Version=${VERSION}'" -o $(TARGET)
2626

2727
release:
28-
docker run --rm --workdir /hubble --volume `pwd`:/hubble docker.io/library/golang:1.19.5-alpine3.17 \
28+
docker run --rm --workdir /hubble --volume `pwd`:/hubble docker.io/library/golang:1.20.2-alpine3.17@sha256:576da1aa73f8ffa3dc6a7577b6032bd834aa84f2e1714d3e7e96b06b49f4e177 \
2929
sh -c "apk add --no-cache setpriv make git && \
3030
/usr/bin/setpriv --reuid=$(RELEASE_UID) --regid=$(RELEASE_GID) --clear-groups make GOCACHE=/tmp/gocache local-release"
3131

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/cilium/hubble
22

3-
go 1.19
3+
go 1.20
44

55
require (
66
github.com/cilium/cilium v1.14.0-snapshot.0

0 commit comments

Comments
 (0)