diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 41c4cddc2..d3d59786e 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -32,7 +32,7 @@ jobs: - name: Set up Go 1.17 uses: actions/setup-go@v1 with: - go-version: 1.17.2 + go-version: 1.17.6 id: go - name: setup Docker uses: docker-practice/actions-setup-docker@0.0.1 @@ -98,7 +98,7 @@ jobs: - name: Set up Go 1.17 uses: actions/setup-go@v1 with: - go-version: 1.17.2 + go-version: 1.17.6 id: go - name: setup Docker uses: docker-practice/actions-setup-docker@0.0.1 @@ -158,7 +158,7 @@ jobs: - name: Set up Go 1.17 uses: actions/setup-go@v1 with: - go-version: 1.17.2 + go-version: 1.17.6 id: go - name: setup Docker uses: docker-practice/actions-setup-docker@0.0.1 @@ -218,7 +218,7 @@ jobs: - name: Set up Go 1.17 uses: actions/setup-go@v1 with: - go-version: 1.17.2 + go-version: 1.17.6 id: go - name: setup Docker uses: docker-practice/actions-setup-docker@0.0.1 @@ -276,7 +276,7 @@ jobs: - name: Set up Go 1.17 uses: actions/setup-go@v1 with: - go-version: 1.17.2 + go-version: 1.17.6 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 cef3304d7..ba6c1d73e 100644 --- a/.github/workflows/build-package.yml +++ b/.github/workflows/build-package.yml @@ -29,7 +29,7 @@ jobs: - name: Set up Go 1.17 uses: actions/setup-go@v1 with: - go-version: 1.17.2 + go-version: 1.17.6 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 c4035a5bb..4ecc024cd 100644 --- a/.github/workflows/conformance_test.yml +++ b/.github/workflows/conformance_test.yml @@ -29,7 +29,7 @@ jobs: - name: Set up Go 1.17 uses: actions/setup-go@v1 with: - go-version: 1.17.2 + go-version: 1.17.6 id: go - name: setup Docker uses: docker-practice/actions-setup-docker@0.0.1 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ac3207eaa..96222fb3d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -162,7 +162,7 @@ Harbor backend is written in [Go](http://golang.org/). If you don't have a Harbo | 2.2 | 1.15.6 | | 2.3 | 1.15.12 | | 2.4 | 1.16.7 | -| 2.5 | 1.17.2 | +| 2.5 | 1.17.6 | Ensure your GOPATH and PATH have been configured in accordance with the Go environment instructions. diff --git a/Makefile b/Makefile index f816c3d37..f6068101c 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ # compile_golangimage: # compile from golang image # for example: make compile_golangimage -e GOBUILDIMAGE= \ -# golang:1.17.2 +# golang:1.17.6 # 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.17.2 +GOBUILDIMAGE=golang:1.17.6 GOBUILDPATHINCONTAINER=/harbor # go build diff --git a/make/photon/chartserver/builder b/make/photon/chartserver/builder index 0e0189d39..23bacee0e 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.17.2 github.com/helm/chartmuseum v0.12.0 cmd/chartmuseum chartm" + echo "e.g: builder golang:1.17.6 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 0068cbcba..d197a6e18 100644 --- a/make/photon/registry/Dockerfile.binary +++ b/make/photon/registry/Dockerfile.binary @@ -1,4 +1,4 @@ -FROM golang:1.17.2 +FROM golang:1.17.6 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 63ab4840b..1b93a9670 100644 --- a/make/photon/trivy-adapter/Dockerfile.binary +++ b/make/photon/trivy-adapter/Dockerfile.binary @@ -1,4 +1,4 @@ -FROM golang:1.17.2 +FROM golang:1.17.6 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 f652028a2..9be77fa5b 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.17.2..." +echo "Building Trivy adapter binary based on golang:1.17.6..." 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 8492ffeb6..e3c308ab1 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-gitaction PKGVERSIONTAG=dev-gitaction UIVERSIONTAG=dev-gitaction GOBUILDIMAGE=golang:1.17.2 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-gitaction PKGVERSIONTAG=dev-gitaction UIVERSIONTAG=dev-gitaction GOBUILDIMAGE=golang:1.17.2 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-gitaction PKGVERSIONTAG=dev-gitaction UIVERSIONTAG=dev-gitaction GOBUILDIMAGE=golang:1.17.6 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-gitaction PKGVERSIONTAG=dev-gitaction UIVERSIONTAG=dev-gitaction GOBUILDIMAGE=golang:1.17.6 COMPILETAG=compile_golangimage BUILDBIN=true NOTARYFLAG=true CHARTFLAG=true TRIVYFLAG=true HTTPPROXY= PULL_BASE_FROM_DOCKERHUB=false