Skip to content

Commit 6c8d009

Browse files
committed
update CI to use golang 1.27.0
Signed-off-by: Ryan Richard <richardry@vmware.com>
1 parent 0eae243 commit 6c8d009

21 files changed

Lines changed: 21 additions & 21 deletions

File tree

dockerfiles/code-coverage-uploader/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
99
RUN curl -sfLo /tmp/codecov https://uploader.codecov.io/latest/linux/codecov
1010
RUN chmod +x /tmp/codecov
1111

12-
FROM golang:1.26.7
12+
FROM golang:1.27.0
1313
RUN apt-get update -y && apt-get dist-upgrade -y
1414
COPY --from=builder /tmp/codecov /usr/local/bin/codecov

dockerfiles/crane/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
FROM gcr.io/go-containerregistry/crane as crane
55
FROM mikefarah/yq:4.53.3 AS yq
66

7-
FROM golang:1.26.7
7+
FROM golang:1.27.0
88
COPY --from=yq /usr/bin/yq /usr/local/bin
99
COPY --from=crane /ko-app/crane /usr/local/bin
1010
ENTRYPOINT ["bash"]

dockerfiles/gh-cli/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ RUN curl \
1111
https://github.com/cli/cli/releases/download/v2.40.0/gh_2.40.0_linux_amd64.tar.gz \
1212
&& tar -C /tmp --strip-components=1 -xzvf /tmp/gh.tar.gz
1313

14-
FROM golang:1.26.7
14+
FROM golang:1.27.0
1515
COPY --from=builder /tmp/bin/gh /usr/local/bin/gh

dockerfiles/integration-test-runner-beta/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN google-chrome --version
3737

3838
# Install Go. The download URL that can be used below for any version of Go can be found on https://go.dev/dl/
3939
ENV PATH /usr/local/go/bin:$PATH
40-
RUN curl -fsSL https://go.dev/dl/go1.26.7.linux-amd64.tar.gz -o /tmp/go.tar.gz && \
40+
RUN curl -fsSL https://go.dev/dl/go1.27.0.linux-amd64.tar.gz -o /tmp/go.tar.gz && \
4141
tar -C /usr/local -xzf /tmp/go.tar.gz && \
4242
rm /tmp/go.tar.gz && \
4343
go version

dockerfiles/integration-test-runner/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ RUN google-chrome --version
3737

3838
# Install Go. The download URL that can be used below for any version of Go can be found on https://go.dev/dl/
3939
ENV PATH /usr/local/go/bin:$PATH
40-
RUN curl -fsSL https://go.dev/dl/go1.26.7.linux-amd64.tar.gz -o /tmp/go.tar.gz && \
40+
RUN curl -fsSL https://go.dev/dl/go1.27.0.linux-amd64.tar.gz -o /tmp/go.tar.gz && \
4141
tar -C /usr/local -xzf /tmp/go.tar.gz && \
4242
rm /tmp/go.tar.gz && \
4343
go version

dockerfiles/test-cfssl/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ FROM cfssl/cfssl:v1.6.5 as cfssl
1111

1212
# We just need any basic unix with bash, but we can pick the same
1313
# base image that they use, just in case they did any dynamic linking.
14-
FROM golang:1.26.7
14+
FROM golang:1.27.0
1515

1616
# Thier Docerfile https://github.com/cloudflare/cfssl/blob/master/Dockerfile
1717
# calls their Makefile https://github.com/cloudflare/cfssl/blob/master/Makefile

pipelines/dockerfile-builders/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ meta:
3838
# These version numbers should be updated periodically.
3939
codegen-versions: &codegen-versions
4040
# Choose which version of Golang to use in the codegen container images.
41-
BUILD_ARG_GO_VERSION: '1.26.7'
41+
BUILD_ARG_GO_VERSION: '1.27.0'
4242
# Choose which version of sigs.k8s.io/controller-tools/cmd/controller-gen to install
4343
# in the codegen container images.
4444
BUILD_ARG_CONTROLLER_GEN_VERSION: 0.21.0

pipelines/pull-requests/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ jobs:
593593
type: registry-image
594594
source:
595595
repository: golang
596-
tag: '1.26.7'
596+
tag: '1.27.0'
597597
inputs:
598598
- name: pinniped-pr
599599
outputs:

pipelines/shared-helpers/test-binaries-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Copyright 2020-2026 the Pinniped contributors. All Rights Reserved.
44
# SPDX-License-Identifier: Apache-2.0
55

6-
FROM golang:1.26.7-bookworm as build-env
6+
FROM golang:1.27.0-bookworm as build-env
77
WORKDIR /work
88
COPY . .
99
ARG GOPROXY

pipelines/shared-helpers/test-binaries-image/Dockerfile_fips

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# we need a separate dockerfile for the fips test image so that the integration tests
77
# use the right ciphers etc.
88

9-
FROM golang:1.26.7-bookworm as build-env
9+
FROM golang:1.27.0-bookworm as build-env
1010
WORKDIR /work
1111
COPY . .
1212
ARG GOPROXY

0 commit comments

Comments
 (0)