diff options
author | silverwind <me@silverwind.io> | 2025-07-16 18:53:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-16 16:53:35 +0000 |
commit | 639ac0026ce0c72faaa8e6bf5c7a34b697c08534 (patch) | |
tree | 4ad7d0d0d6240de5dae368319fc3d222261ee922 | |
parent | f0da1de7e30e31643f2a42787c7ddfbe43c6d892 (diff) | |
download | gitea-639ac0026ce0c72faaa8e6bf5c7a34b697c08534.tar.gz gitea-639ac0026ce0c72faaa8e6bf5c7a34b697c08534.zip |
Run `uv run` with `--frozen` (#35097)
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -393,11 +393,11 @@ lint-actions: ## lint action workflow files .PHONY: lint-templates lint-templates: .venv node_modules ## lint template files @node tools/lint-templates-svg.js - @uv run djlint $(shell find templates -type f -iname '*.tmpl') + @uv run --frozen djlint $(shell find templates -type f -iname '*.tmpl') .PHONY: lint-yaml lint-yaml: .venv ## lint yaml files - @uv run yamllint -s . + @uv run --frozen yamllint -s . .PHONY: watch watch: ## watch everything and continuously rebuild |