1
0
Fork 0
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:
L3D 2024-03-20 15:35:25 +01:00
parent 1a3d04c235
commit 6b4d153e91
Signed by: l3d
GPG key ID: CD08445BFF4313D1
2 changed files with 4 additions and 4 deletions

View file

@ -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

View file

@ -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"