Skip to content

Renovate

Renovate #70374

Workflow file for this run

name: Renovate
on:
schedule:
# The "*" (#42, asterisk) character has special semantics in YAML, so this
# string has to be quoted.
- cron: '0/15 * * * *'
workflow_dispatch:
permissions: read-all
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Get token
id: get_token
uses: machine-learning-apps/actions-app-token@master
with:
APP_PEM: ${{ secrets.RENOVATE_APP_PEM }}
APP_ID: ${{ secrets.RENOVATE_APP_ID }}
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- name: "Yarn: Install"
uses: ./.github/actions/yarn-install
- name: "Run Renovate"
run: yarn renovate
shell: bash
env:
LOG_LEVEL: 'debug'
RENOVATE_TOKEN: 'x-access-token:${{ steps.get_token.outputs.app_token }}'
RENOVATE_CONFIG_FILE: renovate.json