mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-27 12:43:37 +00:00
24 lines
704 B
YAML
24 lines
704 B
YAML
name: Renovate
|
|
on:
|
|
schedule:
|
|
# The "*" (#42, asterisk) character has special semantics in YAML, so this
|
|
# string has to be quoted.
|
|
- cron: '*/5 * * * *'
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3.3.0
|
|
- uses: actions/setup-java@v3
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: '11'
|
|
- name: Self-hosted Renovate
|
|
uses: renovatebot/github-action@v34.143.1
|
|
with:
|
|
configurationFile: solr/renovate-config.js
|
|
token: ${{ secrets.RENOVATE_TOKEN }}
|
|
env:
|
|
RENOVATE_FORK_TOKEN: ${{ secrets.RENOVATE_FORK_TOKEN }}
|
|
LOG_LEVEL: "debug"
|