6 Commits

Author SHA1 Message Date
c34908cf78 chore(deps): update ghcr.io/renovatebot/renovate docker tag to v43 2026-02-28 04:09:48 +00:00
7679d50ed7 Merge pull request 'chore(deps): update actions/checkout action to v6' (#9) from renovate/actions-checkout-6.x into main
All checks were successful
renovate / renovate (push) Successful in 14m37s
Reviewed-on: #9
2026-02-16 14:59:57 +01:00
9cf4b70b99 chore(deps): update actions/checkout action to v6 2025-11-22 04:08:43 +00:00
a4454b56ce feat: rule for gitea
Some checks failed
renovate / renovate (push) Failing after 8s
2025-10-09 19:42:52 +02:00
7cbe0b860a fix: github token
All checks were successful
renovate / renovate (push) Successful in 6m14s
2025-10-09 19:32:37 +02:00
de447fc717 fix typo
All checks were successful
renovate / renovate (push) Successful in 46s
2025-10-09 19:18:15 +02:00
2 changed files with 15 additions and 3 deletions

View File

@@ -13,12 +13,12 @@ on:
jobs: jobs:
renovate: renovate:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:41.74.2 container: ghcr.io/renovatebot/renovate:43.46.0
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v6
- run: renovate - run: renovate
env: env:
RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/config.js RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/config.js
LOG_LEVEL: "debug" LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
RENOVATE_GITHUB_COM_TOKEN: ${{ secret.RENOVATE_GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}

View File

@@ -10,4 +10,16 @@ module.exports = {
}, },
optimizeForDisabled: true, optimizeForDisabled: true,
persistRepoData: true, persistRepoData: true,
hostRules: [
{
hostType: 'github',
matchHost: 'github.com',
token: process.env.GITHUB_TOKEN,
},
{
hostType: 'gitea',
matchHost: 'gitea.ditmarvisser.net',
token: process.env.RENOVATE_TOKEN,
},
],
}; };