renovate/lib/modules/manager/travis
Risu 397ab49ef3
docs(managers): add missing url and displayName (#32621)
Co-authored-by: Michael Kriese <michael.kriese@gmx.de>
2024-12-01 08:47:27 +00:00
..
__fixtures__ refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
__snapshots__ feat(node): use node-version datasource (#26918) 2024-01-29 14:29:22 +00:00
extract.spec.ts feat(node): use node-version datasource (#26918) 2024-01-29 14:29:22 +00:00
extract.ts refactor: use yaml instead of js-yaml for parsing YAML files (#31336) 2024-09-16 18:03:23 +00:00
index.ts docs(managers): add missing url and displayName (#32621) 2024-12-01 08:47:27 +00:00
readme.md refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00
types.ts refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00

readme.md

This manager is intended to keep Travis config files (.travis.yml) up-to-date, this file controls the CI build environment. Currently Renovate can only update the node_js section of this file.

Renovate "understands" Travis's Build Matrix concept as well, so it will try to update all found Node.js versions to the latest LTS, e.g.

node_js:
-  - 8.10.0
-  - 10.10.0
+  - 16.13.0
+  - 16.13.0

Due to this, major updates for Travis are disabled by default. If you enable major updates and use a version matrix, then you will likely need to manually fix any major update PRs raised by Renovate. Here's how to enable major updates in your Renovate config:

{
  "travis": {
    "major": {
      "enabled": true
    }
  }
}