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

Update to golang 1.22.7 #2074

Merged
merged 1 commit into from
Oct 14, 2024
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 .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
golang 1.22.5
golang 1.22.7
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

## Build

FROM docker.io/library/golang:1.22 AS build
FROM docker.io/library/golang:1.22.7 AS build

ARG TARGETOS
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dist
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

# Ideally, use the official image from Red Hat, e.g. registry.access.redhat.com/ubi9/go-toolset,
# but a 1.22 release does not yet exist.
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.22@sha256:859b38e6f53f49350402ca0a8dc342402f0afd8434c2f8984a7a3e714173cdca AS build
FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:v1.22.7@sha256:376dd8d1291580a32824c7a072b72e1dce524bb9d300393b656931ba6156b86d AS build

ARG TARGETOS
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion acceptance/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/enterprise-contract/ec-cli/acceptance

go 1.22.5
go 1.22.7

require (
cuelang.org/go v0.10.0
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/enterprise-contract/ec-cli

go 1.22.5
go 1.22.7

require (
cuelang.org/go v0.10.0
Expand Down
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/enterprise-contract/ec-cli/tools

go 1.22.5
go 1.22.7

require (
github.com/daixiang0/gci v0.13.5
Expand Down
2 changes: 1 addition & 1 deletion tools/kubectl/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/enterprise-contract/ec-cli/tools/kubectl

go 1.22.5
go 1.22.7

require k8s.io/kubernetes v1.31.1

Expand Down
Loading