diff --git a/.github/workflows/renovatebot-config-check.yaml b/.github/workflows/renovatebot-config-check.yaml index d60dd7d..01d4f6f 100644 --- a/.github/workflows/renovatebot-config-check.yaml +++ b/.github/workflows/renovatebot-config-check.yaml @@ -3,12 +3,14 @@ name: Renovatebot | Config Check on: push: paths: - - '.github/renovate.json5' - - '.github/config/renovatebot/**' + - '.github/workflows/renovatebot-config-check.yaml' + - '.github/renovate.json5' + - '.github/config/renovatebot/**' pull_request: paths: - - '.github/renovate.json5' - - '.github/config/renovatebot/**' + - '.github/workflows/renovatebot-config-check.yaml' + - '.github/renovate.json5' + - '.github/config/renovatebot/**' workflow_dispatch: { } permissions: @@ -18,10 +20,11 @@ jobs: check: name: Check renovate config runs-on: ubuntu-latest + steps: - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 - name: Validate renovate config uses: docker://renovate/renovate with: - args: | - renovate-config-validator .github/renovate.json5 .github/config/renovatebot/* + entrypoint: bash + args: -c "renovate-config-validator .github/renovate.json5 .github/config/renovatebot/*"