Skip to content

Commit

Permalink
chore: upgrade go version to 1.22.4 (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
zhiying-lin committed Jun 25, 2024
1 parent fe3bdb5 commit 11785fd
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-publish-mcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.22.3'
GO_VERSION: '1.22.4'

jobs:
prepare-variables:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
contents: read

env:
GO_VERSION: '1.22.3'
GO_VERSION: '1.22.4'

jobs:
detect-noop:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

env:
# Common versions
GO_VERSION: '1.22.3'
GO_VERSION: '1.22.4'

jobs:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ env:
REGISTRY: ghcr.io
IMAGE_VERSION: latest

GO_VERSION: '1.22.3'
GO_VERSION: '1.22.4'

jobs:
export-registry:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ env:
MEMBER_NET_CONTROLLER_MANAGER_IMAGE_NAME: member-net-controller-manager
MCS_CONTROLLER_MANAGER_IMAGE_NAME: mcs-controller-manager

GO_VERSION: '1.22.3'
GO_VERSION: '1.22.4'

jobs:
export-registry:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:
contents: read

env:
GO_VERSION: '1.22.3'
GO_VERSION: '1.22.4'

jobs:
detect-noop:
Expand Down
2 changes: 1 addition & 1 deletion docker/hub-net-controller-manager.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.22.3 as builder
FROM golang:1.22.4 as builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down
2 changes: 1 addition & 1 deletion docker/mcs-controller-manager.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.22.3 as builder
FROM golang:1.22.4 as builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down
2 changes: 1 addition & 1 deletion docker/member-net-controller-manager.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.22.3 as builder
FROM golang:1.22.4 as builder

WORKDIR /workspace
# Copy the Go Modules manifests
Expand Down

0 comments on commit 11785fd

Please sign in to comment.