From 5be4da11fee4286ae51ebd7dcbc3a522adbf74bd Mon Sep 17 00:00:00 2001 From: "scality-renovate[bot]" <234218835+scality-renovate[bot]@users.noreply.github.com> Date: Thu, 11 Jun 2026 11:22:58 +0000 Subject: [PATCH] chore(deps): update dependency operator-framework/operator-sdk to v1.42.2 --- .devcontainer/Dockerfile | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index eb72953..93219dc 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -3,7 +3,7 @@ FROM mcr.microsoft.com/devcontainers/go:1.25-trixie@sha256:036dd67659b3df7197118 USER vscode # renovate: datasource=github-releases depName=operator-framework/operator-sdk extractVersion=^v(?.*)$ -ARG OPERATOR_SDK_VERSION=1.41.1 +ARG OPERATOR_SDK_VERSION=1.42.2 RUN curl -sSfLO https://github.com/operator-framework/operator-sdk/releases/download/v${OPERATOR_SDK_VERSION}/operator-sdk_linux_amd64 && \ chmod +x operator-sdk_linux_amd64 && \ diff --git a/Makefile b/Makefile index 6211fdd..6a00f4c 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ endif # Set the Operator SDK version to use. By default, what is installed on the system is used. # This is useful for CI or a project to utilize a specific version of the operator-sdk toolkit. # renovate: datasource=github-releases depName=operator-framework/operator-sdk -OPERATOR_SDK_VERSION ?= v1.41.1 +OPERATOR_SDK_VERSION ?= v1.42.2 # Image URL to use all building/pushing image targets IMG ?= controller:latest