Auto-update Image Versions #6
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # SPDX-FileCopyrightText: 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: '30 6 * * 0' # Runs at 6:30 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 | |