Renovate #62652
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 | |
concurrency: | |
# if another instance of renovate is running, | |
# do not attempt to run overlapping instances. | |
group: renovate | |
on: # yamllint disable-line rule:truthy | |
schedule: | |
# The "*" (#42, asterisk) character has special semantics in YAML, so this | |
# string has to be quoted. | |
- cron: '0/15 * * * *' | |
jobs: | |
renovate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Self-hosted Renovate | |
uses: renovatebot/github-action@28bcd5c4900a4353b5c9af9e1bd61dd6377f0f0d # v40.3.5 | |
with: | |
configurationFile: renovate.json | |
token: ${{ secrets.GH_PAT }} | |
env: | |
LOG_LEVEL: 'debug' |