diff --git a/poetry.lock b/poetry.lock index 915c0e35..83e5c0af 100644 --- a/poetry.lock +++ b/poetry.lock @@ -276,7 +276,7 @@ python-versions = "*" [[package]] name = "yamllint" -version = "1.27.1" +version = "1.28.0" description = "A linter for YAML files." category = "dev" optional = false @@ -290,7 +290,7 @@ setuptools = "*" [metadata] lock-version = "1.1" python-versions = "^3.9" -content-hash = "21f4a946429e99cdf758e632cc58239bc77118fa075607fdef2c8822e8cbd5e8" +content-hash = "717b8e0a332f9271206a33dc6a42accecce599ad93abc9e035f3e48b3e4e0936" [metadata.files] attrs = [ @@ -447,5 +447,5 @@ typing-extensions = [ {file = "typing_extensions-3.10.0.2.tar.gz", hash = "sha256:49f75d16ff11f1cd258e1b988ccff82a3ca5570217d7ad8c5f48205dd99a677e"}, ] yamllint = [ - {file = "yamllint-1.27.1.tar.gz", hash = "sha256:e688324b58560ab68a1a3cff2c0a474e3fed371dfe8da5d1b9817b7df55039ce"}, + {file = "yamllint-1.28.0.tar.gz", hash = "sha256:9e3d8ddd16d0583214c5fdffe806c9344086721f107435f68bad990e5a88826b"}, ] diff --git a/pyproject.toml b/pyproject.toml index 27985286..25a541e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ authors = ["Arduino "] python = "^3.9" [tool.poetry.dev-dependencies] -yamllint = "^v1.27.1" +yamllint = "^v1.28.0" codespell = "^2.2.1" black = "^22.8" flake8 = "^5.0.4" diff --git a/workflow-templates/check-yaml-task.md b/workflow-templates/check-yaml-task.md index e19fedd3..8a1445e7 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.26.3" +poetry init --python="^3.9" --dev-dependency="yamllint@^1.28.0" poetry install ``` If already using Poetry, add the tool using this command: ``` -poetry add --dev "yamllint@^1.26.3" +poetry add --dev "yamllint@^1.28.0" ``` Commit the resulting `pyproject.toml` and `poetry.lock` files.