diff --git a/.yamllint b/.yamllint index cb32cb1..e9713ae 100644 --- a/.yamllint +++ b/.yamllint @@ -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 diff --git a/tasks/install_runner.yml b/tasks/install_runner.yml index 7733398..57c68da 100644 --- a/tasks/install_runner.yml +++ b/tasks/install_runner.yml @@ -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"