mirror of
https://github.com/Haxxnet/Compose-Examples.git
synced 2026-04-02 01:15:38 +02:00
26 lines
562 B
YAML
26 lines
562 B
YAML
name: Renovate
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 20 * * 0"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: renovatebot/github-action@v44.2.5
|
|
with:
|
|
token: ${{ secrets.RENOVATE_TOKEN }}
|
|
env:
|
|
RENOVATE_REPOSITORIES: ${{ github.repository }}
|
|
LOG_LEVEL: info
|
|
RENOVATE_PRINT_CONFIG: "true"
|
|
RENOVATE_NODE_OPTIONS: "--max-old-space-size=6.144"
|
|
RENOVATE_WORKERS: 1
|