Skip to content

Renovate

Renovate #555

Workflow file for this run

name: Renovate
on:
# “At minute 0 past every 6th hour.”
schedule:
- cron: "0 */6 * * *"
push:
branches:
- master
workflow_dispatch: {}
permissions:
contents: write
pull-requests: write
jobs:
renovate:
runs-on: ubuntu-24.04
if: ${{ github.repository == 'chgl/charts' }}
steps:
- uses: actions/create-github-app-token@136412a57a7081aa63c935a2cc2918f76c34f514 # v1.11.2
id: app-token
with:
app-id: ${{ secrets.RENOVATE_APP_ID }}
private-key: ${{ secrets.RENOVATE_APP_PRIVATE_KEY }}
owner: ${{ github.repository_owner }}
repositories: |
charts
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
fetch-depth: 0
- name: Self-hosted Renovate
uses: renovatebot/github-action@d385c88822a237acaead89c462fa0aef7502748f # v41.0.11
with:
token: "${{ steps.app-token.outputs.token }}"
configurationFile: .renovaterc.json
mount-docker-socket: true
env:
LOG_LEVEL: "debug"
RENOVATE_REPOSITORIES: "${{ github.repository }}"
RENOVATE_ALLOWED_POST_UPGRADE_COMMANDS: ".*"