We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12fbc4e commit 46e4fe1Copy full SHA for 46e4fe1
1 file changed
.github/workflows/update-images.yaml
@@ -0,0 +1,21 @@
1
+#
2
+# SPDX-FileCopyrightText: 2025 SAP SE or an SAP affiliate company and Gardener contributors
3
4
+# SPDX-License-Identifier: Apache-2.0
5
6
+name: Auto-update Image Versions
7
+
8
+on:
9
+ workflow_dispatch:
10
+ schedule:
11
+ - cron: '30 6 * * 0' # Runs at 6:30 AM UTC every Sunday
12
13
+jobs:
14
+ update-images:
15
+ uses: gardener/cc-utils/.github/workflows/update-extension-provider-images.yaml@master
16
+ # Pass all available secrets (like the private key)
17
+ secrets: inherit
18
+ permissions:
19
+ contents: write
20
+ id-token: write
21
0 commit comments