diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml index f489e95..5443355 100644 --- a/.github/workflows/renovate.yaml +++ b/.github/workflows/renovate.yaml @@ -8,7 +8,7 @@ name: Renovate pull_request: types: [edited] push: - branches: ['**'] + branches: [main] paths: - '.github/workflows/renovate.yaml' - '.github/renovate.json5?' @@ -53,9 +53,12 @@ jobs: if: needs.should-renovate.outputs.renovate == 'true' name: Renovate needs: should-renovate - uses: bfra-me/renovate-config/.github/workflows/renovate.yaml@f2bb7ac82c5becc73f89a91b5747a674ee992cd9 # v1.24.0 - with: - autodiscover: false - dry_run: false - print_config: ${{ inputs.print_config || false }} - secrets: inherit + runs-on: ubuntu-latest + steps: + - name: Renovate + uses: bfra-me/renovate-action@426905206e76b61ce5c65dc3df4ea97e96f4b258 # v2.1.4 + with: + print_config: ${{ inputs.print_config || 'false' }} + renovate_app_id: ${{ secrets.APPLICATION_ID }} + renovate_app_pem: ${{ secrets.APPLICATION_PRIVATE_KEY }} + renovate_app_slug: ${{ github.repository_owner }}