Skip to content

Commit c8efaf8

Browse files
committed
fix: bump go to 1.24
1 parent 6ac2961 commit c8efaf8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build the manager binary
2-
FROM golang:1.23 AS builder
2+
FROM golang:1.24 AS builder
33
ARG TARGETOS
44
ARG TARGETARCH
55

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= 1.4.0
6+
VERSION ?= 1.4.1
77

88
# CHANNELS define the bundle channels used in the bundle.
99
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")

cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ var (
4545
setupLog = ctrl.Log.WithName("setup")
4646
)
4747

48-
const version = "v1.4.0"
48+
const version = "v1.4.1"
4949

5050
func init() {
5151
utilruntime.Must(clientgoscheme.AddToScheme(scheme))

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/containeroo/cloudflare-operator
22

3-
go 1.23.0
3+
go 1.24.0
44

55
require (
66
github.com/cloudflare/cloudflare-go v0.115.0

0 commit comments

Comments
 (0)