renovate-config/.forgejo/workflows/renovate.yml

28 lines
795 B
YAML
Raw Normal View History

2024-12-27 10:46:12 -05:00
name: Renovate
2024-12-27 10:44:20 -05:00
on:
schedule:
2024-12-27 15:29:13 -05:00
- cron: "0,10,20,30,40,50 * * * *"
2024-12-27 10:44:20 -05:00
push:
branches:
- main
2024-12-27 10:52:10 -05:00
workflow_dispatch:
2024-12-27 10:44:20 -05:00
jobs:
renovate:
2024-12-27 10:46:12 -05:00
name: Run
runs-on: docker
Update ghcr.io/renovatebot/renovate Docker tag to v39.133.4 (#31) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [ghcr.io/renovatebot/renovate](https://renovatebot.com) ([source](https://github.com/renovatebot/renovate)) | container | patch | `39.133.1` -> `39.133.4` | --- ### Release Notes <details> <summary>renovatebot/renovate (ghcr.io/renovatebot/renovate)</summary> ### [`v39.133.4`](https://github.com/renovatebot/renovate/releases/tag/39.133.4) [Compare Source](https://github.com/renovatebot/renovate/compare/39.133.3...39.133.4) ##### Miscellaneous Chores - **deps:** update python:3.13 docker digest to [`137ae4b`](https://github.com/renovatebot/renovate/commit/137ae4b) ([#&#8203;33838](https://github.com/renovatebot/renovate/issues/33838)) ([f1aef9d](https://github.com/renovatebot/renovate/commit/f1aef9d68a1f0ebc66f80cb4962d482bb9ec3349)) ##### Build System - **deps:** update dependency better-sqlite3 to v11.8.1 ([#&#8203;33841](https://github.com/renovatebot/renovate/issues/33841)) ([f6e93cf](https://github.com/renovatebot/renovate/commit/f6e93cf790ab68c5a60e426add02c9f3eadd0c5e)) ### [`v39.133.3`](https://github.com/renovatebot/renovate/releases/tag/39.133.3) [Compare Source](https://github.com/renovatebot/renovate/compare/39.133.2...39.133.3) ##### Bug Fixes - **deps:** update ghcr.io/renovatebot/base-image docker tag to v9.36.5 ([#&#8203;33836](https://github.com/renovatebot/renovate/issues/33836)) ([cdc9662](https://github.com/renovatebot/renovate/commit/cdc966272941dd57692272c57e78b1b0df0ac611)) ### [`v39.133.2`](https://github.com/renovatebot/renovate/releases/tag/39.133.2) [Compare Source](https://github.com/renovatebot/renovate/compare/39.133.1...39.133.2) ##### Bug Fixes - **deps:** update ghcr.io/containerbase/sidecar docker tag to v13.7.1 ([#&#8203;33833](https://github.com/renovatebot/renovate/issues/33833)) ([1fe7ab7](https://github.com/renovatebot/renovate/commit/1fe7ab7b68b07b35e752d7273aff2aaa3145f39c)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xMzMuMSIsInVwZGF0ZWRJblZlciI6IjM5LjEzMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119--> Reviewed-on: https://www.coastalcommits.com/cc/renovate-config/pulls/31 Co-authored-by: Renovate <renovate@coastalcommits.com> Co-committed-by: Renovate <renovate@coastalcommits.com>
2025-01-26 13:06:47 -05:00
container: ghcr.io/renovatebot/renovate:39.133.4@sha256:31d65e565f0df569a1dc39bc395ffef63fc7544f57c42dd9060c7800be219c52
2024-12-27 10:44:20 -05:00
steps:
2024-12-27 10:46:12 -05:00
- name: Checkout
2024-12-27 20:06:52 +00:00
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2024-12-27 10:46:12 -05:00
- name: Run Renovate
run: renovate
2024-12-27 10:44:20 -05:00
env:
2024-12-27 22:53:17 -05:00
RENOVATE_CONFIG_FILE: "/workspace/cc/renovate-config/config.js"
2025-01-23 16:37:32 -05:00
# LOG_LEVEL: "debug"
2024-12-27 10:50:01 -05:00
RENOVATE_TOKEN: ${{ secrets.RENOVATE_FORGEJO_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}
2024-12-27 15:13:26 -05:00
RENOVATE_GIT_PRIVATE_KEY: ${{ secrets.RENOVATE_SIGNING_KEY }}
2024-12-27 11:10:35 -05:00
2024-12-27 10:44:20 -05:00