diff --git a/poetry.lock b/poetry.lock index 0038f1a4..67853bdf 100644 --- a/poetry.lock +++ b/poetry.lock @@ -365,13 +365,13 @@ files = [ [[package]] name = "yamllint" -version = "1.34.0" +version = "1.35.0" description = "A linter for YAML files." optional = false python-versions = ">=3.8" files = [ - {file = "yamllint-1.34.0-py3-none-any.whl", hash = "sha256:33b813f6ff2ffad2e57a288281098392b85f7463ce1f3d5cd45aa848b916a806"}, - {file = "yamllint-1.34.0.tar.gz", hash = "sha256:7f0a6a41e8aab3904878da4ae34b6248b6bc74634e0d3a90f0fb2d7e723a3d4f"}, + {file = "yamllint-1.35.0-py3-none-any.whl", hash = "sha256:601b0adaaac6d9bacb16a2e612e7ee8d23caf941ceebf9bfe2cff0f196266004"}, + {file = "yamllint-1.35.0.tar.gz", hash = "sha256:9bc99c3e9fe89b4c6ee26e17aa817cf2d14390de6577cb6e2e6ed5f72120c835"}, ] [package.dependencies] @@ -384,4 +384,4 @@ dev = ["doc8", "flake8", "flake8-import-order", "rstcheck[sphinx]", "sphinx"] [metadata] lock-version = "2.0" python-versions = "^3.9" -content-hash = "bd5d2bdc67335cef5783d20ffbaa7d5307dcc643cc43c1449ade9d5740a29fd2" +content-hash = "6572bd3b4263271ddeba245854920ade43055e06ac93254c0ec626f23938baa4" diff --git a/pyproject.toml b/pyproject.toml index 849092a2..7206fa81 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = ["Arduino "] python = "^3.9" [tool.poetry.dev-dependencies] -yamllint = "^v1.34.0" +yamllint = "^v1.35.0" codespell = "^2.2.6" black = "^24.2" flake8 = "^7.0.0" diff --git a/workflow-templates/check-yaml-task.md b/workflow-templates/check-yaml-task.md index c77cec0b..deeee5da 100644 --- a/workflow-templates/check-yaml-task.md +++ b/workflow-templates/check-yaml-task.md @@ -33,14 +33,14 @@ https://python-poetry.org/docs/#installation If your project does not already use Poetry, you can initialize the [`pyproject.toml`](https://python-poetry.org/docs/pyproject/) file using these commands: ``` -poetry init --python="^3.9" --dev-dependency="yamllint@^1.33.0" +poetry init --python="^3.9" --dev-dependency="yamllint@^1.35.0" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "yamllint@^1.33.0" +poetry add --dev "yamllint@^1.35.0" ``` Commit the resulting `pyproject.toml` and `poetry.lock` files.