ghost-helm-chart/.github/workflows/renovate.yml
small-hack-renovate[bot] e86bc853cd
Update renovatebot/github-action action to v43.0.14 (#6)
Co-authored-by: small-hack-renovate[bot] <151926327+small-hack-renovate[bot]@users.noreply.github.com>
2025-09-29 03:30:18 +00:00

33 lines
810 B
YAML

name: Renovate
on:
workflow_dispatch:
schedule:
# This should be every hour
- cron: '55 * * * *'
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: app-token
uses: actions/create-github-app-token@v2
with:
private-key: ${{ secrets.PRIVATE_KEY }}
app-id: ${{ secrets.APP_ID }}
- name: Checkout
uses: actions/checkout@v5.0.0
- name: Self-hosted Renovate
uses: renovatebot/github-action@v43.0.14
with:
token: '${{ steps.app-token.outputs.token }}'
configurationFile: .github/renovate-config.json