From 148906414eba92fd382c05bc18aae0a9bebc510c Mon Sep 17 00:00:00 2001 From: Prajyot-Parab Date: Tue, 14 Mar 2023 22:24:09 +0530 Subject: [PATCH] Fix missing golang update by dependbot Signed-off-by: Prajyot-Parab --- .github/dependabot.yml | 5 +++++ hack/ccm/Dockerfile | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5b8a0ec9e..84186a400 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -38,3 +38,8 @@ updates: directory: "/" schedule: interval: "weekly" + + - package-ecosystem: "docker" + directory: "/hack/ccm" + schedule: + interval: "weekly" diff --git a/hack/ccm/Dockerfile b/hack/ccm/Dockerfile index aff4bfa5e..09b085590 100644 --- a/hack/ccm/Dockerfile +++ b/hack/ccm/Dockerfile @@ -14,12 +14,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -ARG GOLANG_IMAGE=golang:1.19.6 ARG TARGETPLATFORM=linux/amd64 ARG ARCH=amd64 # Build IBM cloud controller manager binary -FROM ${GOLANG_IMAGE} AS ccm-builder +FROM golang:1.20.2 AS ccm-builder ARG ARCH ARG POWERVS_CLOUD_CONTROLLER_COMMIT WORKDIR /build