chore(docker): update renovate/renovate docker tag to v44.65.2 (#161) #232
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: Validate Renovate config | |
| on: | |
| # main only, for the same reason as ci.yml: a PR gets this job from the | |
| # pull_request trigger below, and without the branch filter it reports twice. | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/renovate.json5" | |
| # so a change to the check itself is exercised by the check | |
| - ".github/workflows/validate-renovate.yml" | |
| - ".github/workflows/common-validate-renovate.yml" | |
| pull_request: | |
| paths: | |
| - ".github/renovate.json5" | |
| - ".github/workflows/validate-renovate.yml" | |
| - ".github/workflows/common-validate-renovate.yml" | |
| permissions: {} | |
| jobs: | |
| validate: | |
| # `permissions: {}` above grants nothing, and the callee declares | |
| # `contents: read` -- asking for more than the caller granted is rejected. | |
| permissions: | |
| contents: read | |
| uses: ./.github/workflows/common-validate-renovate.yml | |
| with: | |
| config-path: .github/renovate.json5 |