Skip to content

chore(deps): update pre-commit hook renovatebot/pre-commit-hooks to v… #4948

chore(deps): update pre-commit hook renovatebot/pre-commit-hooks to v…

chore(deps): update pre-commit hook renovatebot/pre-commit-hooks to v… #4948

Workflow file for this run

---
name: Schedule/Push - Renovate
on:
workflow_dispatch:
inputs:
dryRun:
description: "Dry-Run"
default: "true"
required: false
logLevel:
description: "Log-Level"
default: "debug"
required: false
schedule:
- cron: "*/10 * * * *"
push:
branches:
- main
- master
env:
LOG_LEVEL: debug
DRY_RUN: false
RENOVATE_CONFIG_FILE: .github/renovate.json5
jobs:
renovate:
name: Renovate
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Generate Token
uses: actions/create-github-app-token@v1
id: generate-token
with:
app-id: ${{ secrets.BOT_APP_ID }}
private-key: ${{ secrets.BOT_APP_PRIVATE_KEY }}
- name: Override default config from dispatch variables
run: |
echo "DRY_RUN=${{ github.event.inputs.dryRun || env.DRY_RUN }}" >> "$GITHUB_ENV"
echo "LOG_LEVEL=${{ github.event.inputs.logLevel || env.LOG_LEVEL }}" >> "$GITHUB_ENV"
- name: Renovate
uses: renovatebot/[email protected]
with:
configurationFile: ${{ env.RENOVATE_CONFIG_FILE }}
token: "x-access-token:${{ steps.generate-token.outputs.token }}"