From dbcbc8bad0473c0bd2c5df2f958d0c9e29b94110 Mon Sep 17 00:00:00 2001 From: Wang Yan Date: Thu, 9 Sep 2021 17:58:00 +0800 Subject: [PATCH] bump up go to v1.16.7 (#15564) Signed-off-by: Wang Yan --- .github/workflows/CI.yml | 10 +++++----- .github/workflows/build-package.yml | 2 +- .github/workflows/conformance_test.yml | 2 +- CONTRIBUTING.md | 2 +- Makefile | 4 ++-- make/photon/chartserver/builder | 2 +- make/photon/registry/Dockerfile.binary | 2 +- make/photon/trivy-adapter/Dockerfile.binary | 2 +- make/photon/trivy-adapter/builder.sh | 2 +- tests/ci/distro_installer.sh | 4 ++-- 10 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 04cbd46af..5589d3138 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -32,7 +32,7 @@ jobs: - name: Set up Go 1.16 uses: actions/setup-go@v1 with: - go-version: 1.16.5 + go-version: 1.16.7 id: go - name: setup Docker uses: docker-practice/actions-setup-docker@0.0.1 @@ -98,7 +98,7 @@ jobs: - name: Set up Go 1.16 uses: actions/setup-go@v1 with: - go-version: 1.16.5 + go-version: 1.16.7 id: go - name: setup Docker uses: docker-practice/actions-setup-docker@0.0.1 @@ -158,7 +158,7 @@ jobs: - name: Set up Go 1.16 uses: actions/setup-go@v1 with: - go-version: 1.16.5 + go-version: 1.16.7 id: go - name: setup Docker uses: docker-practice/actions-setup-docker@0.0.1 @@ -218,7 +218,7 @@ jobs: - name: Set up Go 1.16 uses: actions/setup-go@v1 with: - go-version: 1.16.5 + go-version: 1.16.7 id: go - name: setup Docker uses: docker-practice/actions-setup-docker@0.0.1 @@ -276,7 +276,7 @@ jobs: - name: Set up Go 1.16 uses: actions/setup-go@v1 with: - go-version: 1.16.5 + go-version: 1.16.7 id: go - name: setup Docker uses: docker-practice/actions-setup-docker@0.0.1 diff --git a/.github/workflows/build-package.yml b/.github/workflows/build-package.yml index ae48606ac..5f37e2bcf 100644 --- a/.github/workflows/build-package.yml +++ b/.github/workflows/build-package.yml @@ -29,7 +29,7 @@ jobs: - name: Set up Go 1.16 uses: actions/setup-go@v1 with: - go-version: 1.16.5 + go-version: 1.16.7 id: go - name: setup Docker uses: docker-practice/actions-setup-docker@0.0.1 diff --git a/.github/workflows/conformance_test.yml b/.github/workflows/conformance_test.yml index 9a55bdd5f..a7d381338 100644 --- a/.github/workflows/conformance_test.yml +++ b/.github/workflows/conformance_test.yml @@ -29,7 +29,7 @@ jobs: - name: Set up Go 1.16 uses: actions/setup-go@v1 with: - go-version: 1.16.5 + go-version: 1.16.7 id: go - name: setup Docker uses: docker-practice/actions-setup-docker@0.0.1 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8ed129d64..c2406469c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -161,7 +161,7 @@ Harbor backend is written in [Go](http://golang.org/). If you don't have a Harbo | 2.1 | 1.14.13 | | 2.2 | 1.15.6 | | 2.3 | 1.15.12 | -| 2.4 | 1.16.5 | +| 2.4 | 1.16.7 | Ensure your GOPATH and PATH have been configured in accordance with the Go environment instructions. diff --git a/Makefile b/Makefile index e5c990076..a48fc50e5 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ # compile_golangimage: # compile from golang image # for example: make compile_golangimage -e GOBUILDIMAGE= \ -# golang:1.16.5 +# golang:1.16.7 # compile_core, compile_jobservice: compile specific binary # # build: build Harbor docker images from photon baseimage @@ -156,7 +156,7 @@ GOINSTALL=$(GOCMD) install GOTEST=$(GOCMD) test GODEP=$(GOTEST) -i GOFMT=gofmt -w -GOBUILDIMAGE=golang:1.16.5 +GOBUILDIMAGE=golang:1.16.7 GOBUILDPATHINCONTAINER=/harbor # go build diff --git a/make/photon/chartserver/builder b/make/photon/chartserver/builder index 6c68e3d94..e8f066444 100755 --- a/make/photon/chartserver/builder +++ b/make/photon/chartserver/builder @@ -4,7 +4,7 @@ set +e usage(){ echo "Usage: builder " - echo "e.g: builder golang:1.16.5 github.com/helm/chartmuseum v0.12.0 cmd/chartmuseum chartm" + echo "e.g: builder golang:1.16.7 github.com/helm/chartmuseum v0.12.0 cmd/chartmuseum chartm" exit 1 } diff --git a/make/photon/registry/Dockerfile.binary b/make/photon/registry/Dockerfile.binary index 43f4b1c5d..14ed59760 100644 --- a/make/photon/registry/Dockerfile.binary +++ b/make/photon/registry/Dockerfile.binary @@ -1,4 +1,4 @@ -FROM golang:1.16.5 +FROM golang:1.16.7 ENV DISTRIBUTION_DIR /go/src/github.com/docker/distribution ENV BUILDTAGS include_oss include_gcs diff --git a/make/photon/trivy-adapter/Dockerfile.binary b/make/photon/trivy-adapter/Dockerfile.binary index c0cfa22b6..d96b1309f 100644 --- a/make/photon/trivy-adapter/Dockerfile.binary +++ b/make/photon/trivy-adapter/Dockerfile.binary @@ -1,4 +1,4 @@ -FROM golang:1.16.5 +FROM golang:1.16.7 ADD . /go/src/github.com/aquasecurity/harbor-scanner-trivy/ WORKDIR /go/src/github.com/aquasecurity/harbor-scanner-trivy/ diff --git a/make/photon/trivy-adapter/builder.sh b/make/photon/trivy-adapter/builder.sh index fa25f45d7..a3b0af2a0 100755 --- a/make/photon/trivy-adapter/builder.sh +++ b/make/photon/trivy-adapter/builder.sh @@ -19,7 +19,7 @@ TEMP=$(mktemp -d ${TMPDIR-/tmp}/trivy-adapter.XXXXXX) git clone https://github.com/aquasecurity/harbor-scanner-trivy.git $TEMP cd $TEMP; git checkout $VERSION; cd - -echo "Building Trivy adapter binary based on golang:1.16.5..." +echo "Building Trivy adapter binary based on golang:1.16.7..." cp Dockerfile.binary $TEMP docker build -f $TEMP/Dockerfile.binary -t trivy-adapter-golang $TEMP diff --git a/tests/ci/distro_installer.sh b/tests/ci/distro_installer.sh index abab8fac5..b13e14ff2 100755 --- a/tests/ci/distro_installer.sh +++ b/tests/ci/distro_installer.sh @@ -3,5 +3,5 @@ set -x set -e -sudo make package_online GOBUILDTAGS="include_oss include_gcs" VERSIONTAG=dev-travis PKGVERSIONTAG=dev-travis UIVERSIONTAG=dev-travis GOBUILDIMAGE=golang:1.16.5 COMPILETAG=compile_golangimage BUILDBIN=true NOTARYFLAG=true CHARTFLAG=true TRIVYFLAG=true HTTPPROXY= PULL_BASE_FROM_DOCKERHUB=false -sudo make package_offline GOBUILDTAGS="include_oss include_gcs" VERSIONTAG=dev-travis PKGVERSIONTAG=dev-travis UIVERSIONTAG=dev-travis GOBUILDIMAGE=golang:1.16.5 COMPILETAG=compile_golangimage BUILDBIN=true NOTARYFLAG=true CHARTFLAG=true TRIVYFLAG=true HTTPPROXY= PULL_BASE_FROM_DOCKERHUB=false +sudo make package_online GOBUILDTAGS="include_oss include_gcs" VERSIONTAG=dev-travis PKGVERSIONTAG=dev-travis UIVERSIONTAG=dev-travis GOBUILDIMAGE=golang:1.16.7 COMPILETAG=compile_golangimage BUILDBIN=true NOTARYFLAG=true CHARTFLAG=true TRIVYFLAG=true HTTPPROXY= PULL_BASE_FROM_DOCKERHUB=false +sudo make package_offline GOBUILDTAGS="include_oss include_gcs" VERSIONTAG=dev-travis PKGVERSIONTAG=dev-travis UIVERSIONTAG=dev-travis GOBUILDIMAGE=golang:1.16.7 COMPILETAG=compile_golangimage BUILDBIN=true NOTARYFLAG=true CHARTFLAG=true TRIVYFLAG=true HTTPPROXY= PULL_BASE_FROM_DOCKERHUB=false