From 8936ee5709ee1261290dd69cfece9c13196c44a5 Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Sun, 8 Jan 2023 08:50:09 +0100 Subject: [PATCH] docs(lockFileMaintenance): update list of supported lockfiles (#19333) --- docs/usage/configuration-options.md | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/docs/usage/configuration-options.md b/docs/usage/configuration-options.md index 23f6909cbe..409b6a49dc 100644 --- a/docs/usage/configuration-options.md +++ b/docs/usage/configuration-options.md @@ -1426,15 +1426,23 @@ This feature can be used to refresh lock files and keep them up-to-date. "Maintaining" a lock file means recreating it so that every dependency version within it is updated to the latest. Supported lock files are: -- `package-lock.json` -- `yarn.lock` -- `pnpm-lock.yaml` +- `.terraform.lock.hcl` +- `Cargo.lock` +- `Chart.lock` - `composer.lock` +- `flake.lock` - `Gemfile.lock` -- `poetry.lock` -- `Cargo.lock` +- `gradle.lockfile` - `jsonnetfile.lock.json` +- `package-lock.json` +- `packages.lock.json` +- `Pipfile.lock` +- `pnpm-lock.yaml` +- `poetry.lock` - `pubspec.lock` +- `pyproject.toml` +- `requirements.txt` +- `yarn.lock` Others may be added via feature request. -- GitLab