renovate-config/.gitea/workflows/renovate.yml
Renovate Bot 94060d3526
All checks were successful
renovate / renovate (push) Successful in 1m27s
chore(deps): update ghcr.io/renovatebot/renovate docker tag to v38.84.0
2024-09-16 19:01:55 +00:00

40 lines
1.0 KiB
YAML

name: renovate
on:
schedule:
- cron: "@hourly"
push:
branches:
- master
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:38.84.0
steps:
- uses: actions/checkout@v4
- name: Restore Renovate Cache
id: cache-renovate
uses: actions/cache/restore@v4
with:
path: /tmp/renovate/cache
key: ${{ runner.os }}-renovate-cache
- name: Renovate
run: renovate
env:
RENOVATE_CONFIG_MIGRATION: "true" # ensure all repositories receive config migration PRs
#LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}
HUB_DOCKER_COM_USER: ${{ secrets.HUB_DOCKER_COM_USER }}
HUB_DOCKER_COM_TOKEN: ${{ secrets.HUB_DOCKER_COM_TOKEN }}
- name: Save Renovate Cache
id: cache-renovate
uses: actions/cache/save@v4
with:
path: /tmp/renovate/cache
key: ${{ runner.os }}-renovate-cache