This commit is contained in:
parent
6efa0bbaed
commit
59e67d0106
@ -13,7 +13,15 @@ jobs:
|
|||||||
container: ghcr.io/renovatebot/renovate:37.19.2
|
container: ghcr.io/renovatebot/renovate:37.19.2
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- run: renovate
|
|
||||||
|
- name: Restore Renovate Cache
|
||||||
|
id: cache-renovate
|
||||||
|
uses: actions/cache/restore@v3
|
||||||
|
with:
|
||||||
|
path: /tmp/renovate/cache
|
||||||
|
key: ${{ runner.os }}-renovate-cache
|
||||||
|
|
||||||
|
- run: Renovate
|
||||||
env:
|
env:
|
||||||
#RENOVATE_CONFIG_FILE: "/home/container/rconfig.js"
|
#RENOVATE_CONFIG_FILE: "/home/container/rconfig.js"
|
||||||
LOG_LEVEL: "debug"
|
LOG_LEVEL: "debug"
|
||||||
@ -22,3 +30,10 @@ jobs:
|
|||||||
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
|
||||||
|
id: cache-renovate
|
||||||
|
uses: actions/cache/save@v3
|
||||||
|
with:
|
||||||
|
path: /tmp/renovate/cache
|
||||||
|
key: ${{ steps.cache-renovate.outputs.cache-primary-key }}
|
Loading…
Reference in New Issue
Block a user