Renovate #102
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 9 * * 1-5' | |
jobs: | |
renovate: | |
name: Renovate | |
runs-on: ubuntu-24.04 | |
permissions: | |
checks: read | |
contents: write | |
issues: write | |
pull-requests: write | |
security-events: read | |
statuses: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
# Everything runs in container, use docker-cmd-file to add packages | |
- name: Renovate | |
uses: renovatebot/github-action@v41.0.11 | |
with: | |
renovate-image: ghcr.io/sergelogvinov/renovate | |
renovate-version: 39 | |
configurationFile: .github/renovate-global.json | |
token: ${{ secrets.GITHUB_TOKEN }} | |
env: | |
LOG_LEVEL: "debug" |