🔄 Check Base Image Updates #55
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
| name: "\U0001F504 Check Base Image Updates" | |
| on: | |
| schedule: | |
| # Daily at 10:00 UTC | |
| - cron: '0 10 * * *' | |
| workflow_dispatch: | |
| inputs: | |
| dry-run: | |
| description: 'only check for updates without creating commits or releases' | |
| type: boolean | |
| default: false | |
| jobs: | |
| check-updates: | |
| name: Check for Base Image Updates | |
| uses: bauer-group/automation-templates/.github/workflows/modules-docker-base-image-monitor.yml@main | |
| with: | |
| config-file: '.github/config/docker-base-image-monitor/base-images.json' | |
| dry-run: ${{ inputs.dry-run || false }} | |
| target-workflow: 'docker-release.yml' | |
| target-workflow-inputs: '{"force-release": "true"}' | |
| secrets: inherit |