Update .gitea/workflows/renovate.yml
Some checks failed
renovate / renovate (push) Has been cancelled

This commit is contained in:
Lee 2024-02-01 02:01:10 +00:00
parent 335acea7b2
commit c3983a7eb1

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