Renovate #127
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: | |
schedule: | |
- cron: "0 0 * * *" | |
push: | |
branches: | |
- main | |
jobs: | |
scan-dep: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
checks: write | |
contents: read | |
security-events: write | |
actions: read | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go environment | |
uses: actions/[email protected] | |
- name: Run prepare | |
run: | | |
cd src-template | |
go run main.go | |
- name: Renovate Bot GitHub Action | |
uses: renovatebot/[email protected] | |
with: | |
token: ${{ secrets.RENOVATE_TOKEN }} | |
configurationFile: ".github/renovate.json" | |
env: | |
LOG_LEVEL: "debug" |