Skip to content

Renovate

Renovate #28821

Workflow file for this run

name: Renovate
on:
schedule:
- cron: "0 * * * *"
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: write
pull-requests: write
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@v2
name: Get token
id: get_token
with:
app-id: ${{ secrets.JENKINS_DEPENDENCY_UPDATER_APP_ID }}
private-key: ${{ secrets.JENKINS_DEPENDENCY_UPDATER_PRIVATE_KEY }}
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Self-hosted Renovate
uses: renovatebot/github-action@3c68caaa9db5ff24332596591dc7c4fed8de16ce # v46.0.1
with:
token: "${{ steps.get_token.outputs.token }}"
docker-cmd-file: .github/renovate-entrypoint.sh
docker-user: root
configurationFile: .github/renovate-config.json5
env:
LOG_LEVEL: 'debug'