For me using this worked:
jobs:
renovate:
permissions:
contents: read
issues: read
pull-requests: write
repository-projects: read
statuses: read
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.6
- name: Renovate
uses: renovatebot/github-action@v40.1.11
with:
configurationFile: renovate-config.json
token: ${{ secrets.GITHUB_TOKEN }}
Note the permissions section. Maybe that is related to #796