Skip to content

Commit 854f9c2

Browse files
authored
Merge branch 'develop' into improvement/remove-eol-distros-add-new-distros
2 parents c594efb + 61f1d46 commit 854f9c2

File tree

4 files changed

+31
-7
lines changed

4 files changed

+31
-7
lines changed

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
---
22

3+
# Any ignore directives should be uncommented in downstream projects to disable
4+
# Dependabot updates for the given dependency. Downstream projects will get
5+
# these updates when the pull request(s) in the appropriate skeleton are merged
6+
# and Lineage processes these changes.
7+
38
version: 2
49
updates:
510
- package-ecosystem: "github-actions"
@@ -11,6 +16,9 @@ updates:
1116
directory: "/"
1217
schedule:
1318
interval: "weekly"
19+
# ignore:
20+
# - dependency-name: "ansible"
21+
# - dependency-name: "ansible-lint"
1422

1523
- package-ecosystem: "terraform"
1624
directory: "/"

.mdl_config.yaml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,17 @@ MD035:
4444
# Enforce dashes for horizontal rules
4545
style: "---"
4646

47-
# MD046/code-block-style Code block style
47+
# MD046/code-block-style - Code block style
4848
MD046:
4949
# Enforce the fenced style for code blocks
5050
style: "fenced"
51+
52+
# MD049/emphasis-style - Emphasis style should be consistent
53+
MD049:
54+
# Enforce asterisks as the style to use for emphasis
55+
style: "asterisk"
56+
57+
# MD050/strong-style - Strong style should be consistent
58+
MD050:
59+
# Enforce asterisks as the style to use for strong
60+
style: "asterisk"

.pre-commit-config.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ repos:
3131

3232
# Text file hooks
3333
- repo: https://github.com/igorshubovych/markdownlint-cli
34-
rev: v0.30.0
34+
rev: v0.31.1
3535
hooks:
3636
- id: markdownlint
3737
args:
@@ -49,7 +49,7 @@ repos:
4949

5050
# pre-commit hooks
5151
- repo: https://github.com/pre-commit/pre-commit
52-
rev: v2.16.0
52+
rev: v2.17.0
5353
hooks:
5454
- id: validate_manifest
5555

@@ -75,15 +75,15 @@ repos:
7575

7676
# Python hooks
7777
- repo: https://github.com/PyCQA/bandit
78-
rev: 1.7.1
78+
rev: 1.7.2
7979
hooks:
8080
- id: bandit
8181
# Bandit complains about the use of assert() in tests
8282
exclude: molecule/default/tests
8383
args:
8484
- --config=.bandit.yml
8585
- repo: https://github.com/psf/black
86-
rev: 21.12b0
86+
rev: 22.1.0
8787
hooks:
8888
- id: black
8989
- repo: https://gitlab.com/pycqa/flake8
@@ -107,14 +107,14 @@ repos:
107107

108108
# Ansible hooks
109109
- repo: https://github.com/ansible-community/ansible-lint
110-
rev: v5.3.2
110+
rev: v5.4.0
111111
hooks:
112112
- id: ansible-lint
113113
# files: molecule/default/playbook.yml
114114

115115
# Terraform hooks
116116
- repo: https://github.com/antonbabenko/pre-commit-terraform
117-
rev: v1.62.3
117+
rev: v1.64.0
118118
hooks:
119119
- id: terraform_fmt
120120
- id: terraform_validate

.yamllint

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ rules:
1616
max-spaces-after: -1
1717
level: error
1818
comments: disable
19+
# yamllint does not like it when you comment out different parts of
20+
# dictionaries in a list. You can see
21+
# https://github.com/adrienverge/yamllint/issues/384 for some examples of
22+
# this behavior.
1923
comments-indentation: disable
2024
document-start: disable
2125
empty-lines:
@@ -30,4 +34,6 @@ rules:
3034
new-lines:
3135
type: unix
3236
trailing-spaces: disable
37+
# yamllint doesn't like when we use yes and no for true and false,
38+
# but that's pretty standard in Ansible.
3339
truthy: disable

0 commit comments

Comments
 (0)