name: update-versions-with-renovate on: push: branches: [main, master] schedule: # https://crontab.guru/ # once a day - cron: '0 0 * * *' permissions: contents: write pull-requests: write jobs: update-versions-with-renovate: runs-on: ubuntu-latest if: github.repository == 'kubernetes-sigs/external-dns' steps: - name: checkout uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 # https://github.com/renovatebot/github-action - name: self-hosted renovate uses: renovatebot/github-action@3633cede7d4d4598438e654eac4a695e46004420 # v46.1.7 with: # https://docs.github.com/en/actions/security-for-github-actions/security-guides/automatic-token-authentication token: ${{ secrets.GITHUB_TOKEN }} configurationFile: .github/renovate-config.js env: LOG_LEVEL: info