Renovate #871
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: Renovate | |
| on: | |
| # Allows manual/automated trigger for debugging purposes | |
| workflow_dispatch: | |
| inputs: | |
| logLevel: | |
| description: "Renovate's log level" | |
| required: true | |
| default: "info" | |
| type: string | |
| schedule: | |
| - cron: '0 8 * * *' | |
| env: | |
| LOG_LEVEL: "info" | |
| jobs: | |
| renovate: | |
| runs-on: ubuntu-latest | |
| if: | | |
| !github.event.repository.fork && | |
| !github.event.pull_request.head.repo.fork | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| # Don't waste time starting Renovate if any preset is unparseable. | |
| # renovate-config-validator only looks at the top-level file and does | |
| # not recursively resolve local> presets, so we also syntax-check every | |
| # renovate*.json5 with the json5 CLI. | |
| - name: Validate Renovate preset syntax | |
| run: | | |
| for f in .github/renovate*.json5; do | |
| npx --yes json5 "$f" > /dev/null | |
| done | |
| - name: Validate Renovate JSON | |
| run: npx --yes --package renovate -- renovate-config-validator | |
| - name: Get token | |
| id: get-github-app-token | |
| uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3 | |
| with: | |
| app-id: ${{ secrets.RENOVATE_GITHUB_APP_ID }} | |
| private-key: ${{ secrets.RENOVATE_GITHUB_APP_PRIVATE_KEY }} | |
| - name: Self-hosted Renovate | |
| uses: renovatebot/github-action@e09d604f8f803bb527bd8321ed5be06c460b8682 # v46.2.2 | |
| env: | |
| RENOVATE_REPOSITORIES: ${{ github.repository }} | |
| # Use GitHub API to create commits | |
| RENOVATE_PLATFORM_COMMIT: "true" | |
| LOG_LEVEL: ${{ github.event.inputs.logLevel || env.LOG_LEVEL }} | |
| RENOVATE_ALLOWED_POST_UPGRADE_COMMANDS: '["^crossplane-nix .+", "^earthly .+"]' | |
| with: | |
| configurationFile: .github/renovate.json5 | |
| token: '${{ steps.get-github-app-token.outputs.token }}' | |
| mount-docker-socket: true | |
| docker-user: root | |
| docker-cmd-file: .github/renovate-entrypoint.sh |