Files
helm-pixelfed/.github/workflows/renovate.yml
T
small-hack-renovate[bot] 5b3bd57f11
Renovate / renovate (push) Has been cancelled
Update actions/checkout action to v4.3.1 (#103)
Co-authored-by: small-hack-renovate[bot] <151926327+small-hack-renovate[bot]@users.noreply.github.com>
2025-11-17 16:22:50 +00:00

35 lines
825 B
YAML

name: Renovate
on:
schedule:
# This should be every hour
- cron: '0 * * * *'
push:
branches:
- main
paths:
- ".github/renovate-config.json"
- ".github/workflows/renovate.yml"
- "renovate.json"
- "scripts/**"
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Get token
id: get_token
uses: tibdex/github-app-token@v2.1.0
with:
private_key: ${{ secrets.PRIVATE_KEY }}
app_id: ${{ secrets.APP_ID }}
- name: Checkout
uses: actions/checkout@v4.3.1
- name: Self-hosted Renovate
uses: renovatebot/github-action@v42.0.6
with:
token: '${{ steps.get_token.outputs.token }}'
configurationFile: .github/renovate-config.json
env:
LOG_LEVEL: 'debug'