Skip to content

Renovate

Renovate #37

Workflow file for this run

name: Renovate
on:
workflow_dispatch:
schedule:
- cron: 0 4 * * *
permissions:
contents: read
jobs:
renovate:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- name: Generate GitHub App token
id: lara-renovate-app-token
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
with:
app-id: ${{ secrets.LARA_RENOVATE_APP_ID }}
private-key: ${{ secrets.LARA_RENOVATE_APP_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
repositories: ${{ github.event.repository.name }}
- name: Renovate
uses: renovatebot/github-action@2d941ef4e268e53affdc1f11365c69a73e544f50 # v43.0.14
env:
RENOVATE_REPOSITORIES: ${{ github.repository }}
RENOVATE_ONBOARDING: false
with:
token: ${{ steps.lara-renovate-app-token.outputs.token }}