12 Commits

Author SHA1 Message Date
e688b40c62 chore(deps): update actions/checkout action to v5
Some checks failed
Ansible Linter / ansible-lint (push) Failing after 4s
Lint Markdown files / markdown-lint (push) Failing after 5s
Ansible Linter / ansible-lint (pull_request) Failing after 5s
Lint Markdown files / markdown-lint (pull_request) Failing after 4s
2025-09-18 19:00:38 +00:00
6ee7e2a0ae fix: avoid interpolation of variable
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 1m7s
Lint Markdown files / markdown-lint (push) Successful in 10s
2025-09-18 18:54:38 +02:00
49623f7f52 fix(tasks): conditional result was 'None' of type 'NoneType'
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 15s
Lint Markdown files / markdown-lint (push) Successful in 3s
2025-09-18 18:32:37 +02:00
20b27e1e6b fix(tasks): conditional result was 'None' of type 'NoneType'
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 19s
Lint Markdown files / markdown-lint (push) Successful in 6s
2025-09-18 18:25:14 +02:00
d8a04d3f1b Merge pull request 'chore(deps): update ansible/ansible-lint action to v25.8.2' (#28) from renovate/actions into master
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 15s
Lint Markdown files / markdown-lint (push) Successful in 15s
2025-08-21 16:01:47 +00:00
b6a5d1c924 chore(deps): update ansible/ansible-lint action to v25.8.2
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 9s
Lint Markdown files / markdown-lint (pull_request) Successful in 9s
Ansible Linter / ansible-lint (push) Successful in 26s
Ansible Linter / ansible-lint (pull_request) Successful in 1m3s
2025-08-21 16:00:29 +00:00
d0ed854384 Merge pull request 'chore(deps): update ansible/ansible-lint action to v25.8.1' (#27) from renovate/actions into master
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 14s
Lint Markdown files / markdown-lint (push) Successful in 9s
2025-08-14 01:01:58 +00:00
7e139fc571 chore(deps): update ansible/ansible-lint action to v25.8.1
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 4s
Lint Markdown files / markdown-lint (pull_request) Successful in 4s
Ansible Linter / ansible-lint (pull_request) Successful in 1m20s
Ansible Linter / ansible-lint (push) Successful in 1m26s
2025-08-14 01:00:25 +00:00
c0e254bd94 Merge pull request 'chore(deps): update ansible/ansible-lint action to v25.8.0' (#26) from renovate/actions into master
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 4s
Ansible Linter / ansible-lint (push) Successful in 56s
2025-08-13 16:01:52 +00:00
2cbd5d82a1 chore(deps): update ansible/ansible-lint action to v25.8.0
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 13s
Ansible Linter / ansible-lint (push) Successful in 21s
Lint Markdown files / markdown-lint (pull_request) Successful in 19s
Ansible Linter / ansible-lint (pull_request) Successful in 1m15s
2025-08-13 16:00:24 +00:00
4f727a2bc9 Merge pull request 'chore(deps): update actions/checkout action to v4.3.0' (#24) from renovate/actions into master
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 54s
Lint Markdown files / markdown-lint (push) Successful in 9s
2025-08-11 13:04:00 +00:00
ce76a15b09 chore(deps): update actions/checkout action to v4.3.0
All checks were successful
Ansible Linter / ansible-lint (push) Successful in 57s
Lint Markdown files / markdown-lint (push) Successful in 9s
Ansible Linter / ansible-lint (pull_request) Successful in 54s
Lint Markdown files / markdown-lint (pull_request) Successful in 9s
2025-08-11 13:00:51 +00:00
4 changed files with 5 additions and 5 deletions

View File

@ -12,9 +12,9 @@ jobs:
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v5
- name: Run ansible-lint - name: Run ansible-lint
uses: ansible/ansible-lint@v25.7.0 uses: ansible/ansible-lint@v25.8.2
with: with:
args: "--config-file .ansible-lint" args: "--config-file .ansible-lint"
setup_python: "true" setup_python: "true"

View File

@ -12,7 +12,7 @@ jobs:
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
- uses: actions/checkout@v4.2.2 - uses: actions/checkout@v5.0.0
- uses: DavidAnson/markdownlint-cli2-action@v20.0.0 - uses: DavidAnson/markdownlint-cli2-action@v20.0.0
with: with:
globs: '**/*.md' globs: '**/*.md'

View File

@ -1,6 +1,6 @@
--- ---
- name: "Create config directory of DNS zone {{ zone.config.origin }}" - name: "Create config directory of DNS zones"
ansible.builtin.file: ansible.builtin.file:
path: "{{ bind_config_directory }}/{{ zone.file | dirname }}" path: "{{ bind_config_directory }}/{{ zone.file | dirname }}"
owner: "{{ bind_unix_user }}" owner: "{{ bind_unix_user }}"

View File

@ -10,4 +10,4 @@
- name: "Fail when the last character of DNS zone file is not a newline: {{ bind_config_directory + '/' + zone.file }}" - name: "Fail when the last character of DNS zone file is not a newline: {{ bind_config_directory + '/' + zone.file }}"
ansible.builtin.fail: ansible.builtin.fail:
msg: "Last character of DNS zone file is not a newline: {{ bind_config_directory + '/' + zone.file }}" msg: "Last character of DNS zone file is not a newline: {{ bind_config_directory + '/' + zone.file }}"
failed_when: _bind9_zone_last_character.stdout | regex_search('.+') | default(false) when: _bind9_zone_last_character.stdout != ''