I'd like to use the full image to run Renovate. I found the useSlim parameter which I set to false. But running the action creates the following log statement Warning: Unexpected input(s) 'useSlim', valid inputs are ['configurationFile', 'token']
So what is the purpose of useSlim and why can't it be used?
|
useSlim: |
|
description: | |
|
Use a lightweight renovate container without any third-party binaries. |
|
Defaults to true if not set. |
|
required: false |
My config:
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.3.0
- name: Self-hosted Renovate
uses: renovatebot/github-action@v34.82.0
with:
configurationFile: default.json
token: ${{ secrets.RENOVATE_TOKEN }}
useSlim: false
env:
GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_COM_TOKEN }}
LOG_LEVEL: debug
I'd like to use the full image to run Renovate. I found the
useSlimparameter which I set to false. But running the action creates the following log statementWarning: Unexpected input(s) 'useSlim', valid inputs are ['configurationFile', 'token']So what is the purpose of
useSlimand why can't it be used?github-action/action.yml
Lines 19 to 23 in 0e93b25
My config: