From fd820db469f61860b381ac75931a261aac87439d Mon Sep 17 00:00:00 2001 From: Ricardo Katz Date: Sun, 9 Jan 2022 22:31:11 -0300 Subject: [PATCH] Update to go v1.17.6 (#8119) --- .github/workflows/ci.yaml | 6 +++--- images/test-runner/Makefile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a4f6b8ad8..0d9ba2ad2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -67,7 +67,7 @@ jobs: id: go uses: actions/setup-go@v2 with: - go-version: 1.17 + go-version: '1.17.6' - name: Set up Docker Buildx id: buildx @@ -126,7 +126,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: '^1.17' + go-version: '1.17.6' - name: cache uses: actions/download-artifact@v2 @@ -319,7 +319,7 @@ jobs: if: ${{ steps.filter-images.outputs.kube-webhook-certgen == 'true' }} uses: actions/setup-go@v2 with: - go-version: 1.17 + go-version: '1.17.6' - name: kube-webhook-certgen image build if: ${{ steps.filter-images.outputs.kube-webhook-certgen == 'true' }} diff --git a/images/test-runner/Makefile b/images/test-runner/Makefile index 664782a09..4caebebd3 100644 --- a/images/test-runner/Makefile +++ b/images/test-runner/Makefile @@ -39,7 +39,7 @@ build: ensure-buildx --progress=$(PROGRESS) \ --pull \ --build-arg BASE_IMAGE=$(NGINX_BASE_IMAGE) \ - --build-arg GOLANG_VERSION=1.17.0 \ + --build-arg GOLANG_VERSION=1.17.6 \ --build-arg ETCD_VERSION=3.4.3-0 \ --build-arg K8S_RELEASE=v1.21.3 \ --build-arg RESTY_CLI_VERSION=0.27 \