2024-01-20 21:53:52 +01:00
|
|
|
name: renovate
|
|
|
|
|
|
|
|
on:
|
2024-01-21 09:17:59 +01:00
|
|
|
workflow_dispatch:
|
|
|
|
|
2024-01-20 21:53:52 +01:00
|
|
|
schedule:
|
2024-02-02 06:54:52 +01:00
|
|
|
# Saturday 4 am
|
|
|
|
- cron: "0 4 * * 6"
|
2024-01-20 21:53:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
renovate:
|
2024-02-09 18:41:15 +01:00
|
|
|
runs-on: docker
|
2024-07-06 02:02:33 +00:00
|
|
|
container: ghcr.io/renovatebot/renovate:37.424.2@sha256:98c4d1ea0e9e2e3c2e9623ceb9637fd693f60c16ab879f2002d64d5de3ab2e45
|
2024-01-20 21:53:52 +01:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-06-15 02:01:24 +00:00
|
|
|
uses: https://github.com/actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # 4.1.7
|
2024-01-20 21:53:52 +01:00
|
|
|
|
|
|
|
- name: Renovate
|
|
|
|
run: renovate
|
|
|
|
env:
|
|
|
|
LOG_LEVEL: "debug"
|
2024-01-21 12:22:15 +01:00
|
|
|
RENOVATE_CONFIG_FILE: "${{ github.workspace }}/renovate.json"
|
2024-01-20 22:22:53 +01:00
|
|
|
RENOVATE_ENDPOINT: https://git.keine.cloud/api/v1
|
2024-01-20 22:09:37 +01:00
|
|
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
2024-01-21 04:16:24 +01:00
|
|
|
RENOVATE_REPOSITORIES: ${{ format('["{0}"]', github.repository) }}
|
2024-01-21 09:14:00 +01:00
|
|
|
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}
|