From 77989c1c4fdf43724f4504a822e53ab20558e09a Mon Sep 17 00:00:00 2001 From: Mate Ory Date: Fri, 27 Sep 2024 21:57:43 +0200 Subject: [PATCH] Bump go version/build image to 1.22.7 Signed-off-by: Mate Ory --- .github/workflows/docs-gen-and-push.yaml | 2 +- .github/workflows/goreleaser.yml | 2 +- .prow.yaml | 16 ++++++++-------- Dockerfile | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/docs-gen-and-push.yaml b/.github/workflows/docs-gen-and-push.yaml index 4a32a7c4afe..fb283e3c268 100644 --- a/.github/workflows/docs-gen-and-push.yaml +++ b/.github/workflows/docs-gen-and-push.yaml @@ -34,7 +34,7 @@ jobs: - uses: actions/setup-go@v5 with: - go-version: v1.22.5 + go-version: v1.22.7 cache: true - uses: actions/setup-python@v5 diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml index 072d96986a6..2639585c5a1 100644 --- a/.github/workflows/goreleaser.yml +++ b/.github/workflows/goreleaser.yml @@ -22,7 +22,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-go@v5 with: - go-version: v1.22.5 + go-version: v1.22.7 - name: Delete non-semver tags run: 'git tag -d $(git tag -l | grep -v "^v")' - name: Set LDFLAGS diff --git a/.prow.yaml b/.prow.yaml index 3eb99f928e1..14effe7426f 100644 --- a/.prow.yaml +++ b/.prow.yaml @@ -7,7 +7,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.22.5-1 + - image: ghcr.io/kcp-dev/infra/build:1.22.7-1 command: - make - verify-boilerplate @@ -27,7 +27,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.22.5-1 + - image: ghcr.io/kcp-dev/infra/build:1.22.7-1 command: - make - verify-codegen @@ -44,7 +44,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.22.5-1 + - image: ghcr.io/kcp-dev/infra/build:1.22.7-1 command: - make - lint @@ -83,7 +83,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.22.5-1 + - image: ghcr.io/kcp-dev/infra/build:1.22.7-1 command: - make - test @@ -104,7 +104,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.22.5-1 + - image: ghcr.io/kcp-dev/infra/build:1.22.7-1 command: - ./hack/run-with-prometheus.sh - make @@ -132,7 +132,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.22.5-1 + - image: ghcr.io/kcp-dev/infra/build:1.22.7-1 command: - ./hack/run-with-prometheus.sh - make @@ -162,7 +162,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.22.5-1 + - image: ghcr.io/kcp-dev/infra/build:1.22.7-1 command: - ./hack/run-with-prometheus.sh - make @@ -188,7 +188,7 @@ presubmits: preset-goproxy: "true" spec: containers: - - image: ghcr.io/kcp-dev/infra/build:1.22.5-1 + - image: ghcr.io/kcp-dev/infra/build:1.22.7-1 command: - ./hack/run-with-prometheus.sh - make diff --git a/Dockerfile b/Dockerfile index 0c877a162db..ebadd200988 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ # limitations under the License. # Build the binary -FROM --platform=${BUILDPLATFORM} docker.io/golang:1.22.5 AS builder +FROM --platform=${BUILDPLATFORM} docker.io/golang:1.22.7 AS builder WORKDIR /workspace # Install dependencies.