Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrading images to use Go 1.17.2 #349

Merged
merged 2 commits into from
Dec 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# [Choice] Go version: 1, 1.16, 1.15
ARG VARIANT=1.17
FROM mcr.microsoft.com/vscode/devcontainers/go:0-${VARIANT}
ARG GO_VERSION=1.17
FROM mcr.microsoft.com/vscode/devcontainers/go:0-${GO_VERSION}

# install mage
RUN git clone https://github.com/magefile/mage && \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: 1.16.x
go-version: 1.17.2
- name: Test
run: go test ./...
2 changes: 1 addition & 1 deletion interceptor/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# adapted from Athens
# https://github.com/gomods/athens/blob/main/cmd/proxy/Dockerfile
ARG GOLANG_VERSION=1.16
ARG GOLANG_VERSION=1.17.2
ARG GOARCH=amd64
ARG GOOS=linux

Expand Down
2 changes: 1 addition & 1 deletion operator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# adapted from Athens
# https://github.com/gomods/athens/blob/main/cmd/proxy/Dockerfile
ARG GOLANG_VERSION=1.16
ARG GOLANG_VERSION=1.17.2
ARG GOARCH=amd64
ARG GOOS=linux

Expand Down
3 changes: 1 addition & 2 deletions scaler/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
# taken from Athens
# https://github.com/gomods/athens/blob/main/cmd/proxy/Dockerfile
ARG GOLANG_VERSION=1.16
ARG GOLANG_VERSION=1.17.2
ARG GOARCH=amd64
ARG GOOS=linux


FROM golang:${GOLANG_VERSION}-alpine AS builder

WORKDIR $GOPATH/src/github.com/kedacore/http-add-on
Expand Down