Skip to content

Schedule - Renovate #27401

Schedule - Renovate

Schedule - Renovate #27401

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Schedule - Renovate
on:
workflow_dispatch:
inputs:
dryRun:
description: Dry-Run
default: "null"
required: false
logLevel:
description: Log-Level
default: debug
required: false
schedule:
- cron: "0 * * * *"
push:
branches:
- main
paths:
- .github/renovate.json5
- .github/renovate-bot.json5
- .github/renovate/**.json5
- .github/workflows/schedule-renovate.yaml
env:
LOG_LEVEL: debug
RENOVATE_DRY_RUN: false
RENOVATE_CONFIG_FILE: .github/renovate-bot.json5
jobs:
renovate:
name: Renovate
#runs-on: ubuntu-latest
runs-on: tyriis-home-ops-runner
steps:
# # https://github.com/marketplace/actions/github-app-token
# - name: Harden Runner
# uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
# with:
# egress-policy: audit
# https://github.com/marketplace/actions/create-github-app-token
- name: Generate Token
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
id: app-token
with:
app-id: "${{ secrets.BOT_APP_ID }}"
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}"
# https://github.com/marketplace/actions/checkout
- name: Checkout Repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
token: "${{ steps.app-token.outputs.token }}"
- name: Override default config from dispatch variables
run: |
echo "RENOVATE_DRY_RUN=${{ github.event.inputs.dryRun || env.RENOVATE_DRY_RUN }}" >> "${GITHUB_ENV}"
echo "LOG_LEVEL=${{ github.event.inputs.logLevel || env.LOG_LEVEL }}" >> "${GITHUB_ENV}"
# https://github.com/marketplace/actions/renovate-bot-github-action
- name: Renovate
uses: renovatebot/github-action@316d7cd859606d6039a2182b7d69199e9b036835 # v46.2.1
with:
configurationFile: "${{ env.RENOVATE_CONFIG_FILE }}"
token: "${{ steps.app-token.outputs.token }}"
env:
RENOVATE_PRINT_CONFIG: "true"
RENOVATE_HOST_RULES: |
[
{
matchHost: "docker.io",
hostType: "docker",
username: "${{ secrets.DOCKER_IO_USER }}",
password: "${{ secrets.DOCKER_IO_TOKEN }}",
},
]