Skip to content

Commit 47128f2

Browse files
authored
Merge branch 'develop' into bugfix/correct-hostname
2 parents 0cca7c2 + c336130 commit 47128f2

File tree

7 files changed

+38
-24
lines changed

7 files changed

+38
-24
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

meta/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,8 @@ galaxy_info:
2828
- bookworm
2929
- name: Fedora
3030
versions:
31-
- 32
32-
- 33
3331
- 34
32+
- 35
3433
- name: Ubuntu
3534
versions:
3635
- bionic

molecule/default/molecule-no-systemd.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,10 @@ platforms:
2929
image: debian:bookworm-slim
3030
- name: kali
3131
image: kalilinux/kali-rolling
32-
- name: fedora32
33-
image: fedora:32
34-
- name: fedora33
35-
image: fedora:33
3632
- name: fedora34
3733
image: fedora:34
34+
- name: fedora35
35+
image: fedora:35
3836
- name: ubuntu18
3937
image: ubuntu:bionic
4038
- name: ubuntu20

molecule/default/molecule-with-systemd.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -57,22 +57,15 @@ platforms:
5757
- /sys/fs/cgroup:/sys/fs/cgroup:ro
5858
command: /lib/systemd/systemd
5959
pre_build_image: yes
60-
- name: fedora32-systemd
61-
image: geerlingguy/docker-fedora32-ansible:latest
62-
privileged: yes
63-
volumes:
64-
- /sys/fs/cgroup:/sys/fs/cgroup:ro
65-
command: /lib/systemd/systemd
66-
pre_build_image: yes
67-
- name: fedora33-systemd
68-
image: geerlingguy/docker-fedora33-ansible:latest
60+
- name: fedora34-systemd
61+
image: geerlingguy/docker-fedora34-ansible:latest
6962
privileged: yes
7063
volumes:
7164
- /sys/fs/cgroup:/sys/fs/cgroup:ro
7265
command: /lib/systemd/systemd
7366
pre_build_image: yes
74-
- name: fedora34-systemd
75-
image: geerlingguy/docker-fedora34-ansible:latest
67+
- name: fedora35-systemd
68+
image: geerlingguy/docker-fedora35-ansible:latest
7669
privileged: yes
7770
volumes:
7871
- /sys/fs/cgroup:/sys/fs/cgroup:ro

0 commit comments

Comments
 (0)