Skip to content

Dependencies

Dependencies #406

Workflow file for this run

name: Dependencies
on:
workflow_dispatch:
schedule:
- cron: "0 */6 * * *"
jobs:
renovate:
name: Renovate Sync
runs-on: ubuntu-latest
steps:
- name: Authenticate with GitHub App Bot
id: app-token
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
with:
app-id: ${{ secrets.PROJECT_APP_ID }}
private-key: ${{ secrets.PROJECT_APP_KEY }}
- name: Checkout
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
token: ${{ steps.app-token.outputs.token }}
ref: ${{ github.head_ref }}
# Make sure the value of GITHUB_TOKEN will not be persisted in repo's config
persist-credentials: false
- name: Install Task
uses: go-task/setup-task@01a4adf9db2d14c1de7a560f09170b6e0df736aa # v2.1.0
- name: Setup Node
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
with:
node-version: "24.x"
- name: Run Renovate
run: task deps:renovate:sync
env:
## Discovery
RENOVATE_AUTODISCOVER: "true"
RENOVATE_AUTODISCOVER_FILTER: "${{ github.repository }}"
## Project sync
RENOVATE_PLATFORM: "github"
RENOVATE_PLATFORM_COMMIT: "enabled"
RENOVATE_TOKEN: ${{ steps.app-token.outputs.token }}
GITHUB_COM_TOKEN: ${{ steps.app-token.outputs.token }}
# Remove unused fields from PR description
RENOVATE_PR_BODY_TEMPLATE: "{{{header}}}{{{table}}}{{{warnings}}}{{{notes}}}{{{changelogs}}}"
RENOVATE_DEPENDENCY_DASHBOARD_HEADER: ""
RENOVATE_DEPENDENCY_DASHBOARD_O_S_V_VULNERABILITY_SUMMARY: "all"