Skip to content

Commit

Permalink
chore: Update golang to 1.22.5
Browse files Browse the repository at this point in the history
  • Loading branch information
justinsb committed Jul 3, 2024
1 parent 263f58d commit 2919519
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion build/builder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# This Dockerfile builds an image containing builds of all the binaries built
# from source (manager, webhook, etc.)
FROM golang:1.22.4 AS builder
FROM golang:1.22.5 AS builder

# Copy in the Go source code
WORKDIR /go/src/github.com/GoogleCloudPlatform/k8s-config-connector
Expand Down
2 changes: 1 addition & 1 deletion build/tooling/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.22.4 AS builder
FROM golang:1.22.5 AS builder

RUN GO111MODULE=on go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.15.0

Expand Down
2 changes: 1 addition & 1 deletion dev/tools/controllerbuilder/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/GoogleCloudPlatform/k8s-config-connector/dev/tools/controllerb

go 1.22

toolchain go1.22.4
toolchain go1.22.5

require (
github.com/fatih/color v1.17.0
Expand Down
2 changes: 1 addition & 1 deletion experiments/composite/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ module github.com/GoogleCloudPlatform/k8s-config-connector/experiments/composite

go 1.22

toolchain go1.22.4
toolchain go1.22.5
2 changes: 1 addition & 1 deletion experiments/compositions/composition/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

# Build the manager binary
FROM golang:1.22.4 as builder
FROM golang:1.22.5 as builder
ARG TARGETOS
ARG TARGETARCH

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# ----------------- Build Container ---------------------------
# Build the go app.
# Explicitly set to latest vs golang:1.22
FROM golang:1.22.4 AS build-stage
FROM golang:1.22.5 AS build-stage

# Set destination for COPY
WORKDIR /go/src/app
Expand Down
2 changes: 1 addition & 1 deletion experiments/compositions/composition/Dockerfile.inline
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# ----------------- Build Container ---------------------------
# Build the go app.
FROM golang:1.22.4 AS build-stage
FROM golang:1.22.5 AS build-stage

# Set destination for COPY
WORKDIR /go/src/app
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# ----------------- Build Container ---------------------------
# Build the go app.
# Explicitly set to latest vs golang:1.22
FROM golang:1.22.4 AS build-stage
FROM golang:1.22.5 AS build-stage

# Set destination for COPY
WORKDIR /go/src/app
Expand Down
2 changes: 1 addition & 1 deletion experiments/compositions/composition/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/GoogleCloudPlatform/k8s-config-connector/experiments/compositi

go 1.22.0

toolchain go1.22.4
toolchain go1.22.5

require (
github.com/Masterminds/semver/v3 v3.2.1
Expand Down
2 changes: 1 addition & 1 deletion experiments/compositions/facade/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

# Build the manager binary
FROM golang:1.22.4 as builder
FROM golang:1.22.5 as builder
ARG TARGETOS
ARG TARGETARCH

Expand Down
2 changes: 1 addition & 1 deletion experiments/compositions/facade/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module facade

go 1.22

toolchain go1.22.4
toolchain go1.22.5

require (
k8s.io/apimachinery v0.28.3
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/GoogleCloudPlatform/k8s-config-connector

go 1.22

toolchain go1.22.4
toolchain go1.22.5

replace github.com/GoogleCloudPlatform/k8s-config-connector/mockgcp => ./mockgcp

Expand Down
2 changes: 1 addition & 1 deletion mockgcp/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/GoogleCloudPlatform/k8s-config-connector/mockgcp

go 1.22

toolchain go1.22.4
toolchain go1.22.5

require (
cloud.google.com/go/compute v1.27.0
Expand Down
2 changes: 1 addition & 1 deletion operator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# This Dockefile builds a thin image containing the manager binary

# Build the manager binary
FROM golang:1.22.4 AS builder
FROM golang:1.22.5 AS builder

# Copy in the Go source code
WORKDIR /go/src/github.com/GoogleCloudPlatform/k8s-config-connector
Expand Down

0 comments on commit 2919519

Please sign in to comment.