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

Bump build to golang 1.23 #958

Merged
merged 4 commits into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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 Dockerfile.kubernikus
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG DOCS_IMAGE=keppel.eu-de-1.cloud.sap/ccloud/kubernikus-docs-builder:latest
FROM keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang:1.22-alpine3.19 as builder
FROM keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang:1.23-alpine3.21 as builder
WORKDIR /app
RUN apk add --no-cache make bash git curl gcc musl-dev
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.55.2
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.kubernikus-binaries
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang:1.22-alpine3.19 as builder
FROM keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang:1.23-alpine3.21 as builder
RUN apk add --no-cache make git curl bash gcc musl-dev
WORKDIR /app
RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.55.2
Expand Down
2 changes: 1 addition & 1 deletion ci/task_checksum.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ image_resource:
type: registry-image
source:
repository: keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang
tag: 1.22-alpine3.19
tag: 1.23-alpine3.21

inputs:
- name: kubernikus.builds
Expand Down
2 changes: 1 addition & 1 deletion ci/task_cli.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ image_resource:
type: registry-image
source:
repository: keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang
tag: 1.22-alpine3.19
tag: 1.23-alpine3.21
inputs:
- name: kubernikus.builds
path: gopath/src/github.com/sapcc/kubernikus
Expand Down
2 changes: 1 addition & 1 deletion ci/task_e2e_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ image_resource:
type: registry-image
source:
repository: keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang
tag: 1.22-alpine3.19
tag: 1.23-alpine3.21

inputs:
- name: kubernikus.builds
Expand Down
2 changes: 1 addition & 1 deletion contrib/all/Dockerfile.apiserver
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG IMAGE

FROM keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang:1.16-alpine3.13 as builder
FROM keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang:1.23-alpine3.21 as builder

WORKDIR /
ADD api-liveness.go .
Expand Down
2 changes: 1 addition & 1 deletion contrib/k8sniff/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang:1.16-alpine3.13
FROM keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang:1.23-alpine3.21

WORKDIR /go/src/github.com/kubermatic/k8sniff

Expand Down
2 changes: 1 addition & 1 deletion contrib/kubernikus-terraform/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang:1.16-alpine3.13 as builder
FROM keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang:1.23-alpine3.21 as builder

RUN apk add --update git make bash gcc musl-dev zip

Expand Down
2 changes: 1 addition & 1 deletion contrib/kubernikus-tests/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang:1.16-alpine3.13
FROM keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang:1.23-alpine3.21
LABEL source_repository="https://github.com/sapcc/kubernikus"

WORKDIR /go/src/github.com/sapcc/kubernikus/
Expand Down
2 changes: 1 addition & 1 deletion contrib/serve_hostname/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang:1.16-alpine3.13
FROM keppel.eu-de-1.cloud.sap/ccloud-dockerhub-mirror/library/golang:1.23-alpine3.21


WORKDIR /
Expand Down
Loading