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

[release-v2.18] Automated cherry pick of #124: Update the golang and alpine base images #125

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
2 changes: 1 addition & 1 deletion .ci/pipeline_definitions
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ terraformer:
PROVIDER: slim
steps:
verify:
image: 'golang:1.16.3'
image: 'golang:1.16.15'
jobs:
head-update:
traits:
Expand Down
2 changes: 1 addition & 1 deletion .test-defs/pod-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ spec:
ACCESS_KEY_ID_FILE=<(echo $ACCESS_KEY_ID)
SECRET_ACCESS_KEY_FILE=<(echo $SECRET_ACCESS_KEY)
IMAGE_TAG=$IMAGE_TAG
image: golang:1.16.3
image: golang:1.16.15
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SPDX-License-Identifier: Apache-2.0

############# golang-base
FROM golang:1.16.3 AS golang-base
FROM golang:1.16.15 AS golang-base

############# terraform-base
FROM golang-base AS terraform-base
Expand Down Expand Up @@ -43,7 +43,7 @@ ARG PROVIDER=all
RUN make install PROVIDER=$PROVIDER

############# terraformer
FROM alpine:3.15.4 AS terraformer
FROM alpine:3.16.2 AS terraformer

# add additional packages that are required by provider plugins
RUN apk add --update tzdata
Expand Down