Skip to content

Dependency Dashboard #28

Dependency Dashboard

Dependency Dashboard #28

Workflow file for this run

name: Renovate
on:
workflow_dispatch:
inputs:
log_level:
description: Log level
required: false
default: INFO
type: choice
options:
- DEBUG
- INFO
- WARN
- ERROR
- FATAL
issues:
jobs:
renovate:
runs-on: ubuntu-latest
if: ${{ (github.event_name == 'workflow_dispatch') || contains(github.event.ref, 'renovate') || (github.event.issue.number == 17) }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: "22"
- name: Setup bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install renovate
run: npm install -g renovate
- name: Echo repository
run: echo ${{ github.repository }}
- name: Run renovate
run: LOG_LEVEL=${{ github.event.inputs.log_level || 'DEBUG' }} renovate --token ${{ secrets.GITHUB_TOKEN }} ${{ github.repository }}