Revert Go 1.17 upgrade

This commit is contained in:
M. Mert Yildiran 2022-01-23 22:55:31 +03:00
parent 8b52a950d5
commit e894ed4621
No known key found for this signature in database
GPG Key ID: D42ADB236521BF7A
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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}