Files
Renovate/.gitea/workflows/workflow.yaml
Renovate Bot c077ba0e21 Update ghcr.io/renovatebot/renovate Docker tag to v41 (#3)
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [ghcr.io/renovatebot/renovate](https://github.com/renovatebot/renovate) | container | major | `37.20.2` -> `41.164.0` |

>  **Important**
>
> Release Notes retrieval for this PR were skipped because no github.com credentials were available.
> If you are self-hosted, please see [this instruction](https://github.com/renovatebot/renovate/blob/master/docs/usage/examples/self-hosting.md#githubcom-token-for-release-notes).

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy4yMC4yIiwidXBkYXRlZEluVmVyIjoiMzcuMjAuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Reviewed-on: #3
Co-authored-by: Renovate Bot <renovate@kovagoadi.hu>
Co-committed-by: Renovate Bot <renovate@kovagoadi.hu>
2025-10-28 22:03:41 +01:00

35 lines
1.2 KiB
YAML

name: Run Renovate
on:
schedule:
- cron: '21 3 * * *'
workflow_dispatch:
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:41.164.0
steps:
# Step 1: Check out the repository so your config file is available
- name: Checkout
uses: actions/checkout@v4.1.1
# Step 2: Run the official Renovate action
- name: Self-hosted Renovate
# uses: renovatebot/github-action@v40.1.2
run: renovate
# with:
# # This token is required to allow Renovate to create Pull Requests
# token: ${{ secrets.RENOVATE_TOKEN }}
# # Correctly specify the config file path relative to your repo root
# # This action will handle mapping it into the container correctly.
# configurationFile: '/workspace/kovagoadi.hu/Renovate/renovate-config.js'
# # Optional: Set the log level for debugging
# logLevel: debug
env:
RENOVATE_CONFIG_FILE: "/workspace/kovagoadi.hu/Renovate/renovate-config.js"
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
# GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}