2022-10-13 16:42:41 +00:00
|
|
|
name: Renovate
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
log-level:
|
|
|
|
type: choice
|
|
|
|
description: Select log level for Renovate
|
|
|
|
options:
|
|
|
|
- trace
|
|
|
|
- debug
|
|
|
|
- info
|
|
|
|
- warn
|
|
|
|
- error
|
|
|
|
default: into
|
|
|
|
required: false
|
|
|
|
schedule:
|
|
|
|
# The "*" (#42, asterisk) character has special semantics in YAML, so this
|
|
|
|
# string has to be quoted.
|
2023-05-02 20:34:06 +00:00
|
|
|
- cron: '0/30 * * * *'
|
2022-10-13 16:42:41 +00:00
|
|
|
jobs:
|
|
|
|
renovate:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2024-03-04 07:55:40 +00:00
|
|
|
uses: actions/checkout@v4.1.1
|
2022-10-13 16:42:41 +00:00
|
|
|
- name: Self-hosted Renovate
|
2023-05-03 02:06:36 +00:00
|
|
|
uses: renovatebot/github-action@v36.0.4
|
2022-10-13 16:42:41 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.RENOVATE_TOKEN }}
|
2023-05-02 20:34:06 +00:00
|
|
|
env:
|
|
|
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
2023-05-03 00:12:16 +00:00
|
|
|
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|