Upgrades
Run trunk upgrade
to update the Trunk CLI and all your plugins, linters, tools, and runtimes.
Upgrade Scopes
Upgrades can be filtered to different scopes by adding them to trunk upgrade <scopes>
. The scopes available are:
Scope | Description |
---|---|
cli | Only upgrade the Trunk CLI to the latest version. |
plugins | Upgrade any that you have sourced to their latest public release. The latest version must be compatible with your current |
check | Upgrade any linters that you have enabled. Linters will be upgraded to the latest validated version that have passed tests in our plugins repo. Additional recommended linters can also be enabled by running with |
tools | Upgrade any that you have enabled. Tools will be upgraded to their latest public release. Note that any enabled linters that share a name with an enabled tool must keep their versions synced. |
runtimes | Upgrade any that you have enabled. Runtimes will be upgraded to their recommended version for running linters, as specified by Trunk. |
Automatic Upgrades
When running locally, Trunk automatically checks for upgrades in the background on a regular cadence. You'll see notifications for these upgrades appear in the VSCode Extension or at the end of a trunk check
run. To stop seeing these notifications, you can run trunk actions disable trunk-upgrade-available
.
When running in single-player mode, Trunk will automatically upgrade itself in the background and stay up to date.
Automatic Upgrades with GitHub Actions
You can configure a GitHub workflow to create PRs with the latest Trunk and tool versions automatically. Here's a sample GitHub Action:
Then, provide permissions for this GitHub Action to create and approve pull requests by navigating to your repo's Settings > Actions > General > Workflow permissions > Allow GitHub Actions to create and approve pull requests.
You can also set the arguments
field to filter particular scopes to upgrade and set base
to define the branch to create a PR against (default main
).
Triggering further workflow runs
PRs created with this GitHub Action will not trigger further workflows by default. If you need the PRs created to trigger further GitHub Action Workflows, follow the workarounds described here.
Pinning Versions
If you don't want a linter, tool, or runtime to be upgraded, you can pin its version by appending !
to the version in your .trunk/trunk.yaml
. For example:
Plugin Repos and user.yaml
By default, upgrades are only applied to your repo's .trunk/trunk.yaml
. If you're using a plugin repo that enables linters/tools, or if you would like upgrades to be applied to your .trunk/user.yaml
file, you can run trunk upgrade --apply-to <path>
to see upgrades applied there.
Last updated