Skip to content

Renovate

Renovate #675

Workflow file for this run

name: Renovate
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
env:
GOVERSION: 1.21.13
jobs:
renovate:
name: Renovate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: "chore/renovate"
- name: Install Go ${{env.GOVERSION}}
uses: actions/setup-go@v5
with:
go-version: ${{env.GOVERSION}}
- name: Self-hosted Renovate
uses: renovatebot/[email protected]
env:
GOTOOLCHAIN: go1.21.13
LOG_LEVEL: debug
with:
configurationFile: .github/renovate.json
token: ${{ secrets.RENOVATE_TOKEN }}
env-regex: "^(?:GOTOOLCHAIN|RENOVATE_\\w+|LOG_LEVEL|GITHUB_COM_TOKEN|NODE_OPTIONS|AWS_TOKEN)$"