renovate/lib/manager/travis
Sergei Zharinov 8a7abfdf01
refactor(github): Convert datasources to class form (#14124)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
Co-authored-by: Jamie Magee <jamie.magee@gmail.com>
2022-02-13 03:24:40 +00:00
..
__fixtures__ feat(manager/travis): support matrix node.js syntax in Travis configs (#12656) 2021-11-22 08:03:38 +00:00
__snapshots__ fix(travis): massage currentValue to string (#11475) 2021-08-30 11:08:48 +02:00
extract.spec.ts feat(manager/travis): support matrix node.js syntax in Travis configs (#12656) 2021-11-22 08:03:38 +00:00
extract.ts refactor(github): Convert datasources to class form (#14124) 2022-02-13 03:24:40 +00:00
index.ts refactor(github): Convert datasources to class form (#14124) 2022-02-13 03:24:40 +00:00
readme.md feat(manager/travis): support matrix node.js syntax in Travis configs (#12656) 2021-11-22 08:03:38 +00:00
types.ts feat(manager/travis): support matrix node.js syntax in Travis configs (#12656) 2021-11-22 08:03:38 +00:00

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
    }
  }
}