Skip to content

Renovate

Renovate #130

Workflow file for this run

name: Renovate
on:
pull_request:
paths:
- '.github/workflows/renovate.yaml'
- '.github/renovate.json5'
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
env:
# renovate: datasource=github-releases depName=renovatebot/renovate
RENOVATE_VERSION: 43.63.0
jobs:
renovate:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Self-hosted Renovate
uses: renovatebot/github-action@v46.1.8
with:
renovate-version: ${{ env.RENOVATE_VERSION }}
token: '${{ secrets.GITHUB_TOKEN }}'
configurationFile: '.github/renovate.json5'
env:
RENOVATE_ALLOW_SCRIPTS: true
RENOVATE_SEPARATE_MAJOR_MINOR: false
RENOVATE_REPOSITORIES: ${{ github.repository }}
LOG_LEVEL: 'info'