1 Commits

Author SHA1 Message Date
460f6c1dae chore(deps): update ansible/ansible-lint action to v25.9.0
Some checks failed
Ansible Linter / ansible-lint (push) Failing after 1m14s
Lint Markdown files / markdown-lint (push) Successful in 24s
Ansible Linter / ansible-lint (pull_request) Failing after 22s
Lint Markdown files / markdown-lint (pull_request) Successful in 18s
2025-09-16 13:00:46 +00:00
4 changed files with 4 additions and 4 deletions

View File

@ -12,7 +12,7 @@ jobs:
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
- uses: actions/checkout@v5.0.0 - uses: actions/checkout@v4
- name: Run ansible-lint - name: Run ansible-lint
uses: ansible/ansible-lint@v25.9.0 uses: ansible/ansible-lint@v25.9.0
with: with:

View File

@ -12,7 +12,7 @@ jobs:
runs-on: runs-on:
- ubuntu-latest - ubuntu-latest
steps: steps:
- uses: actions/checkout@v5.0.0 - uses: actions/checkout@v4.3.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 zones" - name: "Create config directory of DNS zone {{ zone.config.origin }}"
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 }}"
when: _bind9_zone_last_character.stdout != '' failed_when: _bind9_zone_last_character.stdout | regex_search('.+') | default(false)