Nightly CVE Remediation #4
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: Nightly CVE Remediation | |
| on: | |
| schedule: | |
| # 1:00am Pacific during daylight saving time. | |
| - cron: '0 8 * * *' | |
| workflow_dispatch: | |
| inputs: | |
| max_issues: | |
| description: Maximum number of unlinked CVEs to process. | |
| required: false | |
| type: number | |
| default: 50 | |
| concurrency: | |
| group: cve-remediation-${{ github.repository }} | |
| cancel-in-progress: false | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| id-token: write | |
| actions: read | |
| jobs: | |
| remediate: | |
| uses: ./.github/workflows/_cve-remediation.yml | |
| with: | |
| max_issues: ${{ fromJSON(github.event.inputs.max_issues || '50') }} | |
| secrets: inherit |