diff --git a/poetry.lock b/poetry.lock index 27f441e2..72989035 100644 --- a/poetry.lock +++ b/poetry.lock @@ -393,14 +393,14 @@ files = [ [[package]] name = "yamllint" -version = "1.37.0" +version = "1.37.1" description = "A linter for YAML files." optional = false python-versions = ">=3.9" groups = ["dev"] files = [ - {file = "yamllint-1.37.0-py3-none-any.whl", hash = "sha256:c03ab4e79ab4af964c8eb16ac9746880fc76a3bb0ffb14925b9a55220ae7dda0"}, - {file = "yamllint-1.37.0.tar.gz", hash = "sha256:ead81921d4d87216b2528b7a055664708f9fb8267beb0c427cb706ac6ab93580"}, + {file = "yamllint-1.37.1-py3-none-any.whl", hash = "sha256:364f0d79e81409f591e323725e6a9f4504c8699ddf2d7263d8d2b539cd66a583"}, + {file = "yamllint-1.37.1.tar.gz", hash = "sha256:81f7c0c5559becc8049470d86046b36e96113637bcbe4753ecef06977c00245d"}, ] [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 = "ad52175721841af3cfa563fd599109fa78b59d8bff9a306ed4ab722fe650ebac" +content-hash = "2dcd940a0d03d7500db4318edcc1829c544633d7e6af1764067b11ad8443ddf6" diff --git a/pyproject.toml b/pyproject.toml index 07ba593d..2e0c0166 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = ["Arduino "] python = "^3.9" [tool.poetry.dev-dependencies] -yamllint = "^v1.37.0" +yamllint = "^v1.37.1" codespell = "^2.4.1" black = "^25.1" flake8 = "^7.2.0" diff --git a/workflow-templates/check-yaml-task.md b/workflow-templates/check-yaml-task.md index bc7019cf..29e80847 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.37.0" +poetry init --python="^3.9" --dev-dependency="yamllint@^1.37.1" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "yamllint@^1.37.0" +poetry add --dev "yamllint@^1.37.1" ``` Commit the resulting `pyproject.toml` and `poetry.lock` files.