From 8056dcf1efe620a7e120dbb5972f2ba029f8c608 Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Fri, 23 Jun 2023 14:12:24 +0200 Subject: [PATCH] docs(configuration options): update `postUpdateOptions` table (#22949) --- docs/usage/configuration-options.md | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/docs/usage/configuration-options.md b/docs/usage/configuration-options.md index 8c2cf43b7a..708aa5cb70 100644 --- a/docs/usage/configuration-options.md +++ b/docs/usage/configuration-options.md @@ -2561,18 +2561,19 @@ This way Renovate can use GitHub's [Commit signing support for bots and other Gi Table with options: -| Name | Description | -| ------------------------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `bundlerConservative` | Enable conservative mode for `bundler` (Ruby dependencies). This will only update the immediate dependency in the lockfile instead of all subdependencies. | -| `gomodMassage` | Enable massaging `replace` directives before calling `go` commands. | -| `gomodTidy` | Run `go mod tidy` after Go module updates. This is implicitly enabled for major module updates when `gomodUpdateImportPaths` is enabled. | -| `gomodTidy1.17` | Run `go mod tidy -compat=1.17` after Go module updates. | -| `gomodTidyE` | Run `go mod tidy -e` after Go module updates. | -| `gomodUpdateImportPaths` | Update source import paths on major module updates, using [mod](https://github.com/marwan-at-work/mod). | -| `npmDedupe` | Run `npm dedupe` after `package-lock.json` updates. | -| `pnpmDedupe` | Run `pnpm dedupe` after `pnpm-lock.yaml` updates. | -| `yarnDedupeFewer` | Run `yarn-deduplicate --strategy fewer` after `yarn.lock` updates. | -| `yarnDedupeHighest` | Run `yarn-deduplicate --strategy highest` (`yarn dedupe --strategy highest` for Yarn >=2.2.0) after `yarn.lock` updates. | +| Name | Description | +| ---------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- | +| `bundlerConservative` | Enable conservative mode for `bundler` (Ruby dependencies). This will only update the immediate dependency in the lockfile instead of all subdependencies. | +| `helmUpdateSubChartArchives` | Update subchart archives in the `/charts` folder. | +| `gomodMassage` | Enable massaging `replace` directives before calling `go` commands. | +| `gomodTidy` | Run `go mod tidy` after Go module updates. This is implicitly enabled for major module updates when `gomodUpdateImportPaths` is enabled. | +| `gomodTidy1.17` | Run `go mod tidy -compat=1.17` after Go module updates. | +| `gomodTidyE` | Run `go mod tidy -e` after Go module updates. | +| `gomodUpdateImportPaths` | Update source import paths on major module updates, using [mod](https://github.com/marwan-at-work/mod). | +| `npmDedupe` | Run `npm dedupe` after `package-lock.json` updates. | +| `pnpmDedupe` | Run `pnpm dedupe` after `pnpm-lock.yaml` updates. | +| `yarnDedupeFewer` | Run `yarn-deduplicate --strategy fewer` after `yarn.lock` updates. | +| `yarnDedupeHighest` | Run `yarn-deduplicate --strategy highest` (`yarn dedupe --strategy highest` for Yarn >=2.2.0) after `yarn.lock` updates. | ## postUpgradeTasks -- GitLab