Renovate #4421
This file contains 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: | |
repository_dispatch: | |
types: [renovate] | |
schedule: | |
# Run every 30 minutes: | |
- cron: "0,30 * * * *" | |
permissions: {} | |
env: | |
cache_dir: /tmp/renovate/cache | |
cache_key: renovate-cache | |
config_file: config.yaml | |
# tool versions | |
# renovate: datasource=docker depName=renovate packageName=ghcr.io/renovatebot/renovate | |
RENOVATE_VERSION: 38.88.2 | |
jobs: | |
renovate: | |
name: Renovate | |
concurrency: | |
group: ${{ github.workflow }} | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write | |
contents: read | |
steps: | |
- uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
id: restore-cache | |
if: github.event.client_payload.repoCache != 'disabled' | |
with: | |
key: ${{ env.cache_key }} | |
path: ${{ env.cache_dir }} | |
- run: sudo chown -R runneradmin:root /tmp/renovate/ | |
continue-on-error: true | |
- name: Generate a token | |
id: generate_token | |
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0 | |
with: | |
app-id: ${{ vars.EOEO_RENOVATE_APP_ID }} | |
private-key: ${{ secrets.EOEO_RENOVATE_PRIVATE_KEY }} | |
owner: ${{ github.repository_owner }} | |
- name: "Checkout ${{ env.config_file }}" | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
sparse-checkout: | | |
${{ env.config_file }} | |
sparse-checkout-cone-mode: false | |
- uses: renovatebot/github-action@e1db501385ddcccbaae6fb9c06befae04f379f23 # v40.2.10 | |
with: | |
token: ${{ steps.generate_token.outputs.token }} | |
renovate-version: ${{ env.RENOVATE_VERSION }} | |
env-regex: "^(?:RENOVATE_\\w+|FORCE_COLOR|LOG_LEVEL)$" | |
env: | |
# This enables the cache -- if this is set, it's not necessary to add it to renovate.json. | |
RENOVATE_REPOSITORY_CACHE: ${{ github.event.client_payload.repoCache || 'enabled' }} | |
RENOVATE_AUTODISCOVER: true # Renovate runs NOT only on this repository. | |
RENOVATE_DEPENDENCY_DASHBOARD_FOOTER: "- [ ] <!-- manual job -->Check this box to trigger a request for Renovate to run again on this repository" | |
RENOVATE_PLATFORM_COMMIT: true | |
FORCE_COLOR: 3 # chalk.supportsColor | |
LOG_LEVEL: debug | |
# customize | |
RENOVATE_CONFIG_FILE: ${{ env.config_file }} | |
RENOVATE_PR_FOOTER: "This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate/tree/${{ env.RENOVATE_VERSION }}). - [View logs](${{ github.event.repository.html_url }}/actions/runs/${{ github.run_id }})" | |
- run: tree -L 5 -h --du -F "${cache_dir}" | |
- name: delete old cache | |
if: github.event.client_payload.repoCache != 'disabled' && github.ref_name == github.event.repository.default_branch | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_REPO: ${{ github.repository }} | |
run: gh cache delete ${{ steps.restore-cache.outputs.cache-primary-key }} | |
continue-on-error: true | |
- uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
if: github.event.client_payload.repoCache != 'disabled' && github.ref_name == github.event.repository.default_branch | |
with: | |
key: ${{ steps.restore-cache.outputs.cache-primary-key }} | |
path: ${{ env.cache_dir }} |