24 lines
601 B
YAML
24 lines
601 B
YAML
name: renovate
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "@daily"
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Run Renovate
|
|
# Pulled from public Docker Hub instead of ghcr.io
|
|
uses: docker://renovate/renovate:37.20.2
|
|
env:
|
|
# This forces the exact system path to be dynamically generated
|
|
RENOVATE_CONFIG_FILE: ${{ github.workspace }}/infra/renovate/config.js
|
|
LOG_LEVEL: "debug"
|
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} |