Skip to content

Commit

Permalink
update Go version to 1.15.4
Browse files Browse the repository at this point in the history
Signed-off-by: Robin Hahling <robin.hahling@gw-computing.net>
  • Loading branch information
rolinh committed Nov 9, 2020
1 parent ba452ff commit 76d3aea
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unittests.yml
Expand Up @@ -17,7 +17,7 @@ jobs:
path: go/src/github.com/cilium/hubble
- uses: actions/setup-go@v1
with:
go-version: '1.15.3'
go-version: '1.15.4'
- name: Run static checks
env:
GOPATH: /home/runner/work/hubble/go
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: '1.15.3'
go-version: '1.15.4'
- name: Checkout code
uses: actions/checkout@v2
- name: Check module vendoring
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,4 +1,4 @@
FROM docker.io/library/golang:1.15.3-alpine3.12 as builder
FROM docker.io/library/golang:1.15.4-alpine3.12 as builder
WORKDIR /go/src/github.com/cilium/hubble
RUN apk add --no-cache git make
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -19,7 +19,7 @@ hubble:
$(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)

release:
docker run --env "RELEASE_UID=$(RELEASE_UID)" --env "RELEASE_GID=$(RELEASE_GID)" --rm --workdir /hubble --volume `pwd`:/hubble docker.io/library/golang:1.15.3-alpine3.12 \
docker run --env "RELEASE_UID=$(RELEASE_UID)" --env "RELEASE_GID=$(RELEASE_GID)" --rm --workdir /hubble --volume `pwd`:/hubble docker.io/library/golang:1.15.4-alpine3.12 \
sh -c "apk add --no-cache make && make local-release"

local-release: clean
Expand Down

0 comments on commit 76d3aea

Please sign in to comment.