1 Commits

Author SHA1 Message Date
0e114873da Update ghcr.io/renovatebot/renovate Docker tag to v40.62.1 2025-07-26 13:46:43 +00:00
2 changed files with 3 additions and 16 deletions

View File

@@ -5,7 +5,7 @@ on:
branches: branches:
- main - main
schedule: # runs this workflow at the scheduled time (uses UTC, adjust for your timezone) schedule: # runs this workflow at the scheduled time (uses UTC, adjust for your timezone)
- cron: "0 4 * * 3,6" # “At 04:00 on Wednesday and Saturday.” - cron: "0 12 * * *"
push: # runs this workflow when pushes to the main branch are made push: # runs this workflow when pushes to the main branch are made
branches: branches:
- main - main
@@ -13,12 +13,11 @@ on:
jobs: jobs:
renovate: renovate:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:41.43.4 container: ghcr.io/renovatebot/renovate:40.62.1
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- 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 }}
GITHUB_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}

View File

@@ -10,16 +10,4 @@ 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,
},
],
}; };