42 lines
955 B
YAML
42 lines
955 B
YAML
name: Renovate
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 5 * * *' # daily 05:00 UTC
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}
|
|
cancel-in-progress: false
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
issues: write
|
|
|
|
env:
|
|
GO_VERSION: '1.26.2'
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 30
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
|
|
with:
|
|
go-version: ${{ env.GO_VERSION }}
|
|
|
|
- name: Run Renovate
|
|
uses: renovatebot/github-action@b67590ea780158ccd13192c22a3655a5231f869d # v46.1.8
|
|
with:
|
|
configurationFile: .github/renovate.json
|
|
token: ${{ secrets.RENOVATE_TOKEN || secrets.GITHUB_TOKEN }}
|
|
env:
|
|
LOG_LEVEL: debug
|