diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fdafb19f0..a4f723e4a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -224,10 +224,10 @@ jobs: runs-on: ubuntu-latest needs: [docker-manifest, gcp-registry] steps: - - name: Set up Go 1.17 + - name: Set up Go 1.16 uses: actions/setup-go@v2 with: - go-version: '1.17' + go-version: '1.16' - name: Check out the repo uses: actions/checkout@v2 diff --git a/Dockerfile b/Dockerfile index 403937f4d..30726aa1b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ RUN npm run build ### Base of the builder image -FROM golang:1.17-bullseye AS builder-base +FROM golang:1.16-bullseye AS builder-base # Set necessary environment variables needed for our image. ENV CGO_ENABLED=1 GOOS=linux GOARCH=${GOARCH}