Skip to content

Commit c092c53

Browse files
authored
Bump go version to 1.23.5 (#860)
1 parent cfdcd40 commit c092c53

File tree

25 files changed

+25
-27
lines changed

25 files changed

+25
-27
lines changed

controllers/pkg/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nephio-project/nephio/controllers/pkg
22

3-
go 1.22.0
3+
go 1.23.5
44

55
replace (
66
github.com/nephio-project/nephio/krm-functions/configinject-fn => ../../krm-functions/configinject-fn

krm-functions/configinject-fn/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.22-alpine
15+
FROM golang:1.23-alpine
1616
ENV CGO_ENABLED=0
1717
WORKDIR /go/src/
1818
COPY krm-functions/ krm-functions/

krm-functions/configinject-fn/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nephio-project/nephio/krm-functions/configinject-fn
22

3-
go 1.22.0
3+
go 1.23.5
44

55
replace github.com/nephio-project/nephio/krm-functions/lib => ../lib
66

krm-functions/dnn-fn/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.22-alpine
15+
FROM golang:1.23-alpine
1616
ENV CGO_ENABLED=0
1717
WORKDIR /go/src/
1818
COPY krm-functions/ krm-functions/

krm-functions/dnn-fn/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nephio-project/nephio/krm-functions/dnn-fn
22

3-
go 1.22.0
3+
go 1.23.5
44

55
replace github.com/nephio-project/nephio/krm-functions/lib => ../lib
66

krm-functions/gen-configmap-fn/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.22-alpine
15+
FROM golang:1.23-alpine
1616
ENV CGO_ENABLED=0
1717
WORKDIR /go/src/
1818
COPY krm-functions/ krm-functions/

krm-functions/gen-kustomize-res/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.22-alpine
15+
FROM golang:1.23-alpine
1616
ENV CGO_ENABLED=0
1717
WORKDIR /go/src/
1818
COPY krm-functions/ krm-functions/

krm-functions/interface-fn/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.22-alpine
15+
FROM golang:1.23-alpine
1616
ENV CGO_ENABLED=0
1717
WORKDIR /go/src/
1818
COPY krm-functions/ krm-functions/

krm-functions/interface-fn/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nephio-project/nephio/krm-functions/interface-fn
22

3-
go 1.22.0
3+
go 1.23.5
44

55
replace github.com/nephio-project/nephio/krm-functions/lib => ../lib
66

krm-functions/ipam-fn/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.22-alpine
15+
FROM golang:1.23-alpine
1616
ENV CGO_ENABLED=0
1717
WORKDIR /go/src/
1818
COPY krm-functions/ krm-functions/

krm-functions/ipam-fn/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nephio-project/nephio/krm-functions/ipam-fn
22

3-
go 1.22.0
3+
go 1.23.5
44

55
replace github.com/nephio-project/nephio/krm-functions/lib => ../lib
66

krm-functions/lib/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nephio-project/nephio/krm-functions/lib
22

3-
go 1.22.0
3+
go 1.23.5
44

55
require (
66
github.com/GoogleContainerTools/kpt-functions-sdk/go/fn v0.0.0-20230427202446-3255accc518d

krm-functions/nad-fn/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.22-alpine
15+
FROM golang:1.23-alpine
1616
ENV CGO_ENABLED=0
1717
WORKDIR /go/src/
1818
COPY krm-functions/ krm-functions/

krm-functions/nad-fn/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nephio-project/nephio/krm-functions/nad-fn
22

3-
go 1.22.0
3+
go 1.23.5
44

55
replace github.com/nephio-project/nephio/krm-functions/lib => ../lib
66

krm-functions/nfdeploy-fn/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.22-alpine
15+
FROM golang:1.23-alpine
1616
ENV CGO_ENABLED=0
1717
WORKDIR /go/src/
1818
COPY krm-functions/ krm-functions/

krm-functions/nfdeploy-fn/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nephio-project/nephio/krm-functions/nfdeploy-fn
22

3-
go 1.22.0
3+
go 1.23.5
44

55
replace github.com/nephio-project/nephio/krm-functions/lib => ../lib
66

krm-functions/pipeline-tests/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nephio-project/nephio/krm-functions/pipeline-tests
22

3-
go 1.22.0
3+
go 1.23.5
44

55
// always test the latest versions of all functions/libs
66
replace (

krm-functions/ueransim-deploy-fn/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.22-alpine
15+
FROM golang:1.23-alpine
1616
ENV CGO_ENABLED=0
1717
WORKDIR /go/src/
1818
COPY krm-functions/ krm-functions/

krm-functions/ueransim-deploy-fn/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nephio-project/nephio/krm-functions/ueransim-deploy-fn
22

3-
go 1.22.0
3+
go 1.23.5
44

55
replace github.com/nephio-project/nephio/krm-functions/lib => ../lib
66

krm-functions/vlan-fn/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM golang:1.22-alpine
15+
FROM golang:1.23-alpine
1616
ENV CGO_ENABLED=0
1717
WORKDIR /go/src/
1818
COPY krm-functions/ krm-functions/

krm-functions/vlan-fn/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nephio-project/nephio/krm-functions/vlan-fn
22

3-
go 1.22.0
3+
go 1.23.5
44

55
replace github.com/nephio-project/nephio/krm-functions/lib => ../lib
66

operators/focom-operator/go.mod

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/nephio-project/nephio/operators/focom-operator
22

3-
go 1.23.0
4-
5-
toolchain go1.23.5
3+
go 1.23.5
64

75
require (
86
github.com/go-logr/logr v1.4.2

operators/nephio-controller-manager/Dockerfile

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

operators/nephio-controller-manager/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nephio-project/nephio/operators/nephio-controller-manager
22

3-
go 1.22.0
3+
go 1.23.5
44

55
replace (
66
github.com/nephio-project/nephio/controllers/pkg => ../../controllers/pkg

testing/mockeryutils/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/nephio-project/nephio/testing/mockeryutils
22

3-
go 1.22
3+
go 1.23.5
44

55
require github.com/stretchr/testify v1.8.4
66

0 commit comments

Comments
 (0)