diff --git a/poetry.lock b/poetry.lock index 25c35e1c..6881e15f 100644 --- a/poetry.lock +++ b/poetry.lock @@ -393,14 +393,14 @@ files = [ [[package]] name = "yamllint" -version = "1.36.2" +version = "1.37.0" description = "A linter for YAML files." optional = false python-versions = ">=3.9" groups = ["dev"] files = [ - {file = "yamllint-1.36.2-py3-none-any.whl", hash = "sha256:6ba19800513d86c987ed3cf48c0aba4e82b3624596e1dab55723b3733e11f35c"}, - {file = "yamllint-1.36.2.tar.gz", hash = "sha256:c9ccc818659736e7b13f7e2f9c3c9bb9ac77445be13e789e7d843e92cb8428ef"}, + {file = "yamllint-1.37.0-py3-none-any.whl", hash = "sha256:c03ab4e79ab4af964c8eb16ac9746880fc76a3bb0ffb14925b9a55220ae7dda0"}, + {file = "yamllint-1.37.0.tar.gz", hash = "sha256:ead81921d4d87216b2528b7a055664708f9fb8267beb0c427cb706ac6ab93580"}, ] [package.dependencies] @@ -413,4 +413,4 @@ dev = ["doc8", "flake8", "flake8-import-order", "rstcheck[sphinx]", "sphinx"] [metadata] lock-version = "2.1" python-versions = "^3.9" -content-hash = "2c1da24331f6f6bf7ae7234858a56a87d0d534d8b4597562b008302eb0b3b682" +content-hash = "89ee662a57a2a0ba8cfe0b682ae061caaafa143d86ebd69c6bba5da6ce0cdc0b" diff --git a/pyproject.toml b/pyproject.toml index 92b7c64c..02cc8375 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = ["Arduino "] python = "^3.9" [tool.poetry.dev-dependencies] -yamllint = "^v1.36.2" +yamllint = "^v1.37.0" codespell = "^2.4.1" black = "^25.1" flake8 = "^7.1.2" diff --git a/workflow-templates/check-yaml-task.md b/workflow-templates/check-yaml-task.md index c9d2545a..bc7019cf 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.36.2" +poetry init --python="^3.9" --dev-dependency="yamllint@^1.37.0" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "yamllint@^1.36.2" +poetry add --dev "yamllint@^1.37.0" ``` Commit the resulting `pyproject.toml` and `poetry.lock` files.