From 0c6239ca2e7b57d596f749e658f6fea38d7dc1e7 Mon Sep 17 00:00:00 2001 From: Wolfgang Pross Date: Thu, 11 Sep 2025 17:53:11 +0200 Subject: [PATCH 1/2] Add workflow to update images --- .github/workflows/update-images.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/update-images.yaml diff --git a/.github/workflows/update-images.yaml b/.github/workflows/update-images.yaml new file mode 100644 index 000000000..50b994773 --- /dev/null +++ b/.github/workflows/update-images.yaml @@ -0,0 +1,21 @@ +# +# SPDX-FileCopyrightText: 2025 SAP SE or an SAP affiliate company and Gardener contributors +# +# SPDX-License-Identifier: Apache-2.0 +# +name: Auto-update Image Versions + +on: + workflow_dispatch: + schedule: + - cron: '0 7 * * 0' # Runs at 7:00 AM UTC every Sunday + +jobs: + update-images: + uses: gardener/cc-utils/.github/workflows/update-extension-provider-images.yaml@master + # Pass all available secrets (like the private key) + secrets: inherit + permissions: + contents: write + pull-requests: write + id-token: write From 473b0f56573c9a9c93bc42e63088654d9f86cb71 Mon Sep 17 00:00:00 2001 From: Wolfgang Pross Date: Tue, 23 Sep 2025 09:20:35 +0200 Subject: [PATCH 2/2] Rm pull-requests permissions It's not required since the called workflow uses a GitHub App token with the necessary permissions. --- .github/workflows/update-images.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/update-images.yaml b/.github/workflows/update-images.yaml index 50b994773..a6aa127a5 100644 --- a/.github/workflows/update-images.yaml +++ b/.github/workflows/update-images.yaml @@ -17,5 +17,4 @@ jobs: secrets: inherit permissions: contents: write - pull-requests: write id-token: write