> ## Documentation Index
> Fetch the complete documentation index at: https://docs.qlty.sh/llms.txt
> Use this file to discover all available pages before exploring further.

# plugins upgrade

```bash lines theme={"system"}
qlty plugins upgrade [OPTIONS] <PLUGIN>
```

Upgrade a plugin for the current project

The command edits the current project's `qlty.toml` file to upgrade plugin version.

## Arguments

<AccordionGroup>
  <Accordion title="<PLUGIN>">Plugin to upgrade</Accordion>
  <Accordion title="--version <VERSION>">Optional - Specific version to upgrade to</Accordion>
</AccordionGroup>

## Examples

```bash Upgrade to the latest compatible version of shellcheck lines theme={"system"}
qlty plugins upgrade shellcheck
```

```bash Upgrade shellcheck to version 1.2.3 lines theme={"system"}
qlty plugins upgrade shellcheck --version=1.2.3
```

<Warning>
  When specifying the version with --version option, it is responsibility of the user to make sure
  the version is valid and compatible with qlty.
</Warning>

## See Also

* [`plugins enable`](/cli/commands/plugins-enable)
* [`plugins disable`](/cli/commands/plugins-disable)
* [`plugins list`](/cli/commands/plugins-list)
* [Global Options](/cli/global-options)
