2024-03-30 15:05:24 +00:00
|
|
|
#
|
2024-04-08 07:16:51 +00:00
|
|
|
# Runs every 2 hours, but Renovate is limited to create new PR before 4am.
|
|
|
|
# See renovate.json for more settings.
|
|
|
|
# Automerge is enabled for Renovate PR's but need to be approved before.
|
2024-03-30 15:05:24 +00:00
|
|
|
#
|
2024-03-25 09:31:15 +00:00
|
|
|
name: renovate
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- 'renovate/**' # self-test updates
|
|
|
|
schedule:
|
2024-04-08 07:16:51 +00:00
|
|
|
- cron: '0 0/2 * * *'
|
2024-08-06 09:34:36 +00:00
|
|
|
workflow_dispatch:
|
2024-03-25 09:31:15 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
RENOVATE_DRY_RUN: ${{ (github.event_name != 'schedule' && github.ref_name != github.event.repository.default_branch) && 'full' || '' }}
|
|
|
|
RENOVATE_REPOSITORIES: ${{ github.repository }}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
renovate:
|
|
|
|
if: ${{ secrets.RENOVATE_TOKEN != '' }}
|
|
|
|
|
|
|
|
runs-on: docker
|
|
|
|
container:
|
2024-10-21 00:03:17 +00:00
|
|
|
image: code.forgejo.org/forgejo-contrib/renovate:38.128.6
|
2024-03-25 09:31:15 +00:00
|
|
|
|
|
|
|
steps:
|
2024-04-18 11:22:51 +00:00
|
|
|
- name: Load renovate repo cache
|
2024-10-09 04:54:02 +00:00
|
|
|
uses: https://code.forgejo.org/actions/cache/restore@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
|
2024-03-25 09:31:15 +00:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
.tmp/cache/renovate/repository
|
2024-05-31 10:36:19 +00:00
|
|
|
.tmp/cache/renovate/renovate-cache-sqlite
|
2024-03-25 13:41:46 +00:00
|
|
|
.tmp/osv
|
2024-03-25 09:31:15 +00:00
|
|
|
key: repo-cache-${{ github.run_id }}
|
|
|
|
restore-keys: |
|
|
|
|
repo-cache-
|
|
|
|
|
2024-04-18 18:08:27 +00:00
|
|
|
- name: Run renovate
|
|
|
|
run: renovate
|
2024-03-25 09:31:15 +00:00
|
|
|
env:
|
|
|
|
GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_COM_TOKEN }}
|
|
|
|
LOG_LEVEL: debug
|
|
|
|
RENOVATE_BASE_DIR: ${{ github.workspace }}/.tmp
|
|
|
|
RENOVATE_ENDPOINT: ${{ github.server_url }}
|
|
|
|
RENOVATE_PLATFORM: gitea
|
|
|
|
RENOVATE_REPOSITORY_CACHE: 'enabled'
|
|
|
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
|
|
|
RENOVATE_GIT_AUTHOR: 'Renovate Bot <forgejo-renovate-action@forgejo.org>'
|
|
|
|
|
2024-05-31 10:36:19 +00:00
|
|
|
RENOVATE_X_SQLITE_PACKAGE_CACHE: true
|
|
|
|
|
2024-03-25 09:31:15 +00:00
|
|
|
GIT_AUTHOR_NAME: 'Renovate Bot'
|
|
|
|
GIT_AUTHOR_EMAIL: 'forgejo-renovate-action@forgejo.org'
|
|
|
|
GIT_COMMITTER_NAME: 'Renovate Bot'
|
|
|
|
GIT_COMMITTER_EMAIL: 'forgejo-renovate-action@forgejo.org'
|
|
|
|
|
2024-03-25 13:41:46 +00:00
|
|
|
OSV_OFFLINE_ROOT_DIR: ${{ github.workspace }}/.tmp/osv
|
|
|
|
|
2024-03-25 09:31:15 +00:00
|
|
|
- name: Save renovate repo cache
|
2024-04-08 06:47:02 +00:00
|
|
|
if: always() && env.RENOVATE_DRY_RUN != 'full'
|
2024-10-09 04:54:02 +00:00
|
|
|
uses: https://code.forgejo.org/actions/cache/save@3624ceb22c1c5a301c8db4169662070a689d9ea8 # v4.1.1
|
2024-03-25 09:31:15 +00:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
.tmp/cache/renovate/repository
|
2024-05-31 10:36:19 +00:00
|
|
|
.tmp/cache/renovate/renovate-cache-sqlite
|
2024-03-25 13:41:46 +00:00
|
|
|
.tmp/osv
|
2024-03-25 09:31:15 +00:00
|
|
|
key: repo-cache-${{ github.run_id }}
|