daanselen 60cf1e700a
renovate / renovate (push) Successful in 54m27s
Update .gitea/workflows/renovate.yml
2026-07-12 10:21:03 +00:00
2026-06-05 21:05:05 +02:00
2026-06-05 20:38:36 +02:00
2026-06-05 20:26:49 +02:00
2026-06-05 20:26:49 +02:00
2026-06-05 20:26:49 +02:00
2026-06-05 20:38:36 +02:00
2026-06-05 20:57:39 +02:00
2026-06-05 20:26:49 +02:00
2026-06-05 20:26:49 +02:00

renovate-config

To host the renovate config.

  • config.js holds the self-hosted Renovate configuration so that Renovate knows what and how it should process.
  • renovate.json in this repository ensures to receive Renovate updates.
  • default.json holds the basic config for all repositories. It extends the presets by the renovate project defined in renovate-schema.json.
  • Each repository can extend/alter this config by adding a renovate.json file to the root of the repository.

Reusable presets

Golang dependency group

What it does:

  • Groups all Golang dependencies into one PR
    • Respects your repository's separateMajorMinor setting1
  • Runs go mod tidy before committing to ensure a clean go.sum2

Usage:

{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": [
    "local>nerthus/renovate-config",
+   "local>nerthus/renovate-config:go-deps"
  ]
}

NPM dependency group

What it does:

  • Groups all NPM dependencies3 into one PR
    • Respects your repository's separateMajorMinor setting1
  • Groups all NPM dev-dependencies3 into one PR
    • Respects your repository's separateMajorMinor setting1

Usage:

{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": [
    "local>nerthus/renovate-config",
+   "local>nerthus/renovate-config:npm-deps"
  ]
}

Workflow dependency group

What it does:

  • Groups all workflow dependencies into one PR
    • Respects your repository's separateMajorMinor setting1

Usage:

{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": [
    "local>nerthus/renovate-config",
+   "local>nerthus/renovate-config:workflow-deps"
  ]
}

Security fixes

What it does:

  • Bumps a dependency to resolve a vulnerability4
    • Overrules any scheduling and grouping for that vulnerability

Usage:

{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": [
    "local>nerthus/renovate-config",
+   "local>nerthus/renovate-config:security"
  ]
}
S
Description
No description provided
Readme MIT 330 KiB
Languages
JavaScript 100%