Renovate #99
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Renovate | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
renovate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Apt install | |
run: sudo apt-get update && sudo apt-get install -y libxmlsec1-dev | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
- name: Self-hosted Renovate | |
uses: renovatebot/[email protected] | |
with: | |
configurationFile: renovate-config.json | |
token: ${{ secrets.GITHUB_TOKEN }} |