From 0c4807142793ce0e6781a0cca0a66e30aad64281 Mon Sep 17 00:00:00 2001 From: Francisco Vila <57452611+franvila@users.noreply.github.com> Date: Mon, 16 Feb 2026 13:57:14 +0100 Subject: [PATCH 1/4] Update renovate.json --- .github/renovate.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index a84b91e16e..cc4cbdfdf0 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -130,6 +130,28 @@ ], "datasourceTemplate": "maven" }, + { + "customType": "regex", + "fileMatch": [ + "^\\.github\\/actions\\/setup-minikube\\/.*\\.ya?ml$" + ], + "matchStrings": [ + "minikube version.*:.*(?\\d+\\.\\d+\\.\\d+)" + ], + "depNameTemplate": "kubernetes/minikube", + "datasourceTemplate": "github-releases" + }, + { + "customType": "regex", + "fileMatch": [ + "^\\.github\\/actions\\/setup-minikube\\/.*\\.ya?ml$" + ], + "matchStrings": [ + "kubernetes version.*:.*(?\\d+\\.\\d+\\.\\d+)" + ], + "depNameTemplate": "kubernetes/kubernetes", + "datasourceTemplate": "github-releases" + }, { "customType": "regex", "fileMatch": [ From bd1e2837dfda2b958e28cf0697ac551fba4f9ed2 Mon Sep 17 00:00:00 2001 From: Francisco Vila <57452611+franvila@users.noreply.github.com> Date: Mon, 16 Feb 2026 14:31:18 +0100 Subject: [PATCH 2/4] Update renovate.json --- .github/renovate.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index cc4cbdfdf0..937c311b6e 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -133,7 +133,7 @@ { "customType": "regex", "fileMatch": [ - "^\\.github\\/actions\\/setup-minikube\\/.*\\.ya?ml$" + "^\\.github\\/actions\\/dependencies\\/setup-minikube\\/.*\\.ya?ml$" ], "matchStrings": [ "minikube version.*:.*(?\\d+\\.\\d+\\.\\d+)" @@ -144,7 +144,7 @@ { "customType": "regex", "fileMatch": [ - "^\\.github\\/actions\\/setup-minikube\\/.*\\.ya?ml$" + "^\\.github\\/actions\\/dependencies\\/setup-minikube\\/.*\\.ya?ml$" ], "matchStrings": [ "kubernetes version.*:.*(?\\d+\\.\\d+\\.\\d+)" From 87b394800fd76749c36f3f7183970dd3b0fd84d7 Mon Sep 17 00:00:00 2001 From: Francisco Vila <57452611+franvila@users.noreply.github.com> Date: Mon, 16 Feb 2026 14:36:46 +0100 Subject: [PATCH 3/4] Create action.yml --- .../dependencies/setup-minikube/action.yml | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/actions/dependencies/setup-minikube/action.yml diff --git a/.github/actions/dependencies/setup-minikube/action.yml b/.github/actions/dependencies/setup-minikube/action.yml new file mode 100644 index 0000000000..55c1793b0d --- /dev/null +++ b/.github/actions/dependencies/setup-minikube/action.yml @@ -0,0 +1,30 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +name: "Setup Minikube" +description: "Installs minikube" + +runs: + using: "composite" + steps: + - name: Setup Minikube + uses: manusa/actions-setup-minikube@b589f2d61bf96695c546929c72b38563e856059d + with: + "minikube version": "v1.38.0" + "kubernetes version": "v1.35.0" + "github token": ${{ secrets.GITHUB_TOKEN }} + driver: docker From a590d521d84f01fe402b7adbf1d07a4ac280316f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 13:38:10 +0000 Subject: [PATCH 4/4] chore(deps): update dependency kubernetes/kubernetes to v1.35.1 Signed-off-by: franvila <57452611+franvila@users.noreply.github.com> --- .github/actions/dependencies/setup-minikube/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/dependencies/setup-minikube/action.yml b/.github/actions/dependencies/setup-minikube/action.yml index 55c1793b0d..8e37696b70 100644 --- a/.github/actions/dependencies/setup-minikube/action.yml +++ b/.github/actions/dependencies/setup-minikube/action.yml @@ -25,6 +25,6 @@ runs: uses: manusa/actions-setup-minikube@b589f2d61bf96695c546929c72b38563e856059d with: "minikube version": "v1.38.0" - "kubernetes version": "v1.35.0" + "kubernetes version": "v1.35.1" "github token": ${{ secrets.GITHUB_TOKEN }} driver: docker