mirror of
https://github.com/roles-ansible/ansible_role_forgeo_runner.git
synced 2024-08-16 10:29:50 +02:00
improve linting
This commit is contained in:
parent
1a3d04c235
commit
6b4d153e91
2 changed files with 4 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
extends: default
|
||||
|
||||
rules:
|
||||
# 150 chars should be enough, but don't fail if a line is longer
|
||||
# 170 chars should be enough, but don't fail if a line is longer
|
||||
line-length:
|
||||
max: 150
|
||||
max: 170
|
||||
level: warning
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
register: _runner_tmp
|
||||
|
||||
- name: Download forgejo-runner binary
|
||||
get_url:
|
||||
ansible.builtin.get_url:
|
||||
url: "{{ forgejo_runner__dl_url }}/{{ forgejo_runner__filename }}"
|
||||
dest: "{{ _runner_tmp.path }}/{{ forgejo_runner__filename }}"
|
||||
mode: "0755"
|
||||
|
@ -23,7 +23,7 @@
|
|||
group: "{{ forgejo_runner__group }}"
|
||||
|
||||
- name: Download forgejo-runner.asc file
|
||||
get_url:
|
||||
ansible.builtin.get_url:
|
||||
url: "{{ forgejo_runner__dl_url }}/{{ forgejo_runner__filename }}.asc"
|
||||
dest: "{{ _runner_tmp.path }}/{{ forgejo_runner__filename }}.asc"
|
||||
mode: "0644"
|
||||
|
|
Loading…
Reference in a new issue