Skip to content

Renovate

Renovate #386

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@c1a285145b9d317df6ced56c09f525b5c2b6f755 # v1.11.1
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@2be773c4be8361d8182cc1b750e75bbc75af71b0 # v41.0.7
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: ".*"