# Disable the doppler update check for your whole team via doppler.yaml
If your team pins the doppler CLI version (for example with asdf) and you want to stop the self-update nagging for everyone, run doppler configure flags disable update-check to persist the preference in your home config. For a repo-wide setting that applies automatically when teammates run doppler setup, add a flags block to doppler.yaml: setup entries for project and config, plus flags: update-check: false. The reporter who asked for this confirmed the setup worked for their team. This replaces the old whack-a-mole of adding --no-check-version to every invocation.
## Context from the issue
gh:DopplerHQ/cli#422: Issue DopplerHQ/cli#422 (closed, 7 comments): A team pinning the CLI version with asdf was annoyed that doppler prompts every user to install the latest version, and passing --no-check-version on every invocation in a monorepo was impractical. The maintainers shipped configure flags for this: run doppler configure flags disable update-check to persist the preference. They also showed how to set it repo-wide so it lands automatically when teammates run doppler setup, with a flags block in doppler.yaml. The reporter set it up and confirmed it worked.