diff --git a/.github/workflows/build-publish-mcr.yml b/.github/workflows/build-publish-mcr.yml index fa4a8af4..3f76ef1f 100644 --- a/.github/workflows/build-publish-mcr.yml +++ b/.github/workflows/build-publish-mcr.yml @@ -17,7 +17,7 @@ env: # `public` indicates images to MCR wil be publicly available, and will be removed in the final MCR images REGISTRY_REPO: public/aks/fleet - GO_VERSION: '1.25.11' + GO_VERSION: '1.25.12' jobs: prepare-variables: diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 16c61b36..8f1a0ac5 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -13,7 +13,7 @@ permissions: contents: read env: - GO_VERSION: '1.25.11' + GO_VERSION: '1.25.12' jobs: detect-noop: diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 2011e8c5..6c71957a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -14,7 +14,7 @@ on: env: # Common versions - GO_VERSION: '1.25.11' + GO_VERSION: '1.25.12' jobs: diff --git a/.github/workflows/publish-image.yml b/.github/workflows/publish-image.yml index f45c49b1..1e6438c7 100644 --- a/.github/workflows/publish-image.yml +++ b/.github/workflows/publish-image.yml @@ -19,7 +19,7 @@ env: REGISTRY: ghcr.io IMAGE_VERSION: latest - GO_VERSION: '1.25.11' + GO_VERSION: '1.25.12' jobs: export-registry: diff --git a/.github/workflows/trivy.yml b/.github/workflows/trivy.yml index 657c19f9..ef1eca6a 100644 --- a/.github/workflows/trivy.yml +++ b/.github/workflows/trivy.yml @@ -18,7 +18,7 @@ env: MEMBER_NET_CONTROLLER_MANAGER_IMAGE_NAME: member-net-controller-manager MCS_CONTROLLER_MANAGER_IMAGE_NAME: mcs-controller-manager - GO_VERSION: '1.25.11' + GO_VERSION: '1.25.12' jobs: export-registry: diff --git a/.github/workflows/unit-integration-tests.yml b/.github/workflows/unit-integration-tests.yml index 2f433dd2..df60dc36 100644 --- a/.github/workflows/unit-integration-tests.yml +++ b/.github/workflows/unit-integration-tests.yml @@ -16,7 +16,7 @@ permissions: contents: read env: - GO_VERSION: '1.25.11' + GO_VERSION: '1.25.12' jobs: detect-noop: diff --git a/docker/hub-net-controller-manager.Dockerfile b/docker/hub-net-controller-manager.Dockerfile index e30aa2b4..c79a7922 100644 --- a/docker/hub-net-controller-manager.Dockerfile +++ b/docker/hub-net-controller-manager.Dockerfile @@ -1,5 +1,5 @@ # Build the hub-net-controller-manager binary -FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.11 AS builder +FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.12 AS builder ARG GOOS=linux ARG GOARCH=amd64 diff --git a/docker/mcs-controller-manager.Dockerfile b/docker/mcs-controller-manager.Dockerfile index aa6b09ca..26515368 100644 --- a/docker/mcs-controller-manager.Dockerfile +++ b/docker/mcs-controller-manager.Dockerfile @@ -1,5 +1,5 @@ # Build the mcs-controller-manager binary -FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.11 AS builder +FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.12 AS builder ARG GOOS=linux ARG GOARCH=amd64 diff --git a/docker/member-net-controller-manager.Dockerfile b/docker/member-net-controller-manager.Dockerfile index 64ae7bcf..9af8cd9f 100644 --- a/docker/member-net-controller-manager.Dockerfile +++ b/docker/member-net-controller-manager.Dockerfile @@ -1,5 +1,5 @@ # Build the member-net-controller-manager binary -FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.11 AS builder +FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.12 AS builder ARG GOOS=linux ARG GOARCH=amd64 diff --git a/docker/net-crd-installer.Dockerfile b/docker/net-crd-installer.Dockerfile index 0dbe48ee..e2f9d954 100644 --- a/docker/net-crd-installer.Dockerfile +++ b/docker/net-crd-installer.Dockerfile @@ -1,5 +1,5 @@ # Build the net-crd-installer binary -FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.11 AS builder +FROM mcr.microsoft.com/oss/go/microsoft/golang:1.25.12 AS builder ARG GOOS=linux ARG GOARCH=amd64 diff --git a/go.mod b/go.mod index 0f32fdeb..43c14f71 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module go.goms.io/fleet-networking -go 1.25.11 +go 1.25.12 require go.goms.io/fleet v0.14.0