Skip to content

Renovate

Renovate #8

Workflow file for this run

name: Renovate
on:
schedule:
# Run once a week on Sunday at midnight UTC
- cron: '0 0 * * 0'
# Allow manual triggering
workflow_dispatch:
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Self-hosted Renovate
uses: renovatebot/github-action@v46.1.14
with:
# Use the configuration file in the root directory
configurationFile: renovate.json
# You need to create a Personal Access Token (PAT) with `repo` scope
# and save it as a repository secret named `RENOVATE_TOKEN`
token: ${{ secrets.RENOVATE_TOKEN }}
env:
# Tell Renovate which repository to run against
RENOVATE_REPOSITORIES: ${{ github.repository }}