Skip to content

Commit dcfba48

Browse files
fix linting
1 parent 18ec404 commit dcfba48

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

tasks/install_deps.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
- libssl1.1
1111
- libicu57
1212
state: present
13-
update_cache: yes
13+
update_cache: true
1414
when: (ansible_distribution == "Debian" and ansible_distribution_major_version == "9")
1515

1616
- name: Install dependencies on Debian Buster
@@ -23,7 +23,7 @@
2323
- libssl1.1
2424
- libicu63
2525
state: present
26-
update_cache: yes
26+
update_cache: true
2727
when: (ansible_distribution == "Debian" and ansible_distribution_major_version == "10")
2828

2929
- name: Install dependencies on Debian Bullseye
@@ -36,7 +36,7 @@
3636
- libssl1.1
3737
- libicu67
3838
state: present
39-
update_cache: yes
39+
update_cache: true
4040
when: (ansible_distribution == "Debian" and ansible_distribution_major_version == "11")
4141

4242
- name: Install dependencies on Debian Bookworm
@@ -49,7 +49,7 @@
4949
- libssl3
5050
- libicu72
5151
state: present
52-
update_cache: yes
52+
update_cache: true
5353
when: (ansible_distribution == "Debian" and ansible_distribution_major_version == "12")
5454

5555
- name: Install dependencies on Ubuntu Xenial systems
@@ -62,7 +62,7 @@
6262
- libssl1.0.0
6363
- libicu55
6464
state: present
65-
update_cache: yes
65+
update_cache: true
6666
when: (ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "16")
6767

6868
- name: Install dependencies on Ubuntu Bionic systems
@@ -75,7 +75,7 @@
7575
- libssl1.1
7676
- libicu60
7777
state: present
78-
update_cache: yes
78+
update_cache: true
7979
when: (ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "18")
8080

8181
- name: Install dependencies on Ubuntu Focal systems
@@ -88,7 +88,7 @@
8888
- libssl1.1
8989
- libicu66
9090
state: present
91-
update_cache: yes
91+
update_cache: true
9292
when: (ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "20")
9393

9494
- name: Install dependencies on Ubuntu Jammy systems
@@ -100,7 +100,7 @@
100100
- zlib1g
101101
- libicu70
102102
state: present
103-
update_cache: yes
103+
update_cache: true
104104
when: (ansible_distribution == "Ubuntu" and ansible_distribution_major_version == "22")
105105

106106
- name: Install dependencies on RHEL/CentOS/Fedora systems
@@ -112,7 +112,7 @@
112112
- zlib
113113
- libicu
114114
state: present
115-
update_cache: yes
115+
update_cache: true
116116
when: (ansible_distribution == "RedHat") or
117117
(ansible_distribution == "CentOS") or
118118
(ansible_distribution == "Fedora") or

tasks/install_runner.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
ansible.builtin.file:
44
path: "{{ runner_dir }}"
55
state: directory
6-
mode: 0755
6+
mode: "0755"
77
owner: "{{ runner_user_id.stdout }}"
88
group: "{{ runner_user_group_id.stdout }}"
99

@@ -27,7 +27,7 @@
2727
owner: "{{ runner_user_id.stdout }}"
2828
group: "{{ runner_user_group_id.stdout }}"
2929
remote_src: yes
30-
mode: 0755
30+
mode: "0755"
3131
environment:
3232
PATH: /usr/local/bin:/opt/homebrew/bin/:{{ ansible_env.HOME }}/bin:{{ ansible_env.PATH }}
3333
when: runner_version not in runner_installed.stdout or reinstall_runner
@@ -38,7 +38,7 @@
3838
block: "{{ custom_env }}"
3939
owner: "{{ runner_user }}"
4040
create: yes
41-
mode: 0755
41+
mode: "0755"
4242
marker_begin: "# BEGIN ANSIBLE MANAGED BLOCK"
4343
marker_end: "# END ANSIBLE MANAGED BLOCK"
4444
when: custom_env is defined

0 commit comments

Comments
 (0)