diff --git a/.github/workflows/update-images.yaml b/.github/workflows/update-images.yaml new file mode 100644 index 000000000..a6aa127a5 --- /dev/null +++ b/.github/workflows/update-images.yaml @@ -0,0 +1,20 @@ +# +# 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 + id-token: write