1 Commits

Author SHA1 Message Date
9bc69955af chore(deps): update actions/checkout action to v5
Some checks failed
Ansible Linter / ansible-lint (push) Failing after 6s
Lint Markdown files / markdown-lint (push) Failing after 4s
Ansible Linter / ansible-lint (pull_request) Failing after 3s
Lint Markdown files / markdown-lint (pull_request) Failing after 3s
2025-08-11 16:00:50 +00:00
3 changed files with 4 additions and 4 deletions

View File

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

View File

@@ -1,6 +1,6 @@
---
- name: "Create config directory of DNS zones"
- name: "Create config directory of DNS zone {{ zone.config.origin }}"
ansible.builtin.file:
path: "{{ bind_config_directory }}/{{ zone.file | dirname }}"
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 }}"
ansible.builtin.fail:
msg: "Last character of DNS zone file is not a newline: {{ bind_config_directory + '/' + zone.file }}"
when: _bind9_zone_last_character.stdout != ''
failed_when: _bind9_zone_last_character.stdout | regex_search('.+') | default(false)