Skip to content
This repository was archived by the owner on May 8, 2025. It is now read-only.

Commit a36aea8

Browse files
authored
Merge pull request #70 from staticdev/dependabot/pip/dot-github/workflows/ansible-lint-6.0.0
Bump ansible-lint from 5.4.0 to 6.0.0 in /.github/workflows
2 parents 7ff1a22 + abd646e commit a36aea8

File tree

6 files changed

+11
-10
lines changed

6 files changed

+11
-10
lines changed

.github/workflows/constraints.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pip==22.0.4
22
ansible==5.5.0
33
yamllint==1.26.3
4-
ansible-lint==5.4.0
4+
ansible-lint==6.0.0
55
poetry==1.1.13

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name: Tests
1111

1212
defaults:
1313
run:
14-
working-directory: 'staticdev.signal'
14+
working-directory: "staticdev.signal"
1515

1616
jobs:
1717
lint:
@@ -21,7 +21,7 @@ jobs:
2121
- name: Check out the repository
2222
uses: actions/checkout@v3
2323
with:
24-
path: 'staticdev.signal'
24+
path: "staticdev.signal"
2525

2626
- name: Set up Python
2727
uses: actions/setup-python@v3
@@ -51,7 +51,7 @@ jobs:
5151
- name: Check out the repository
5252
uses: actions/checkout@v3
5353
with:
54-
path: 'staticdev.signal'
54+
path: "staticdev.signal"
5555

5656
- name: Set up Python
5757
uses: actions/setup-python@v3

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
repos:
33
- repo: https://github.com/pre-commit/pre-commit-hooks
4-
rev: v3.4.0
4+
rev: v4.1.0
55
hooks:
66
- id: check-added-large-files
77
- id: check-toml
@@ -10,16 +10,16 @@ repos:
1010
- id: trailing-whitespace
1111
- id: check-added-large-files
1212
- repo: https://github.com/pre-commit/mirrors-prettier
13-
rev: v2.3.1
13+
rev: v2.6.0
1414
hooks:
1515
- id: prettier
1616
- repo: https://github.com/adrienverge/yamllint.git
17-
rev: v1.26.1
17+
rev: v1.26.3
1818
hooks:
1919
- id: yamllint
2020
args: ["-c=.yamllint", "."]
2121
- repo: https://github.com/ansible-community/ansible-lint.git
22-
rev: v5.0.12
22+
rev: v6.0.0
2323
hooks:
2424
- id: ansible-lint
2525
files: \.(yaml|yml)$

molecule/default/converge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@
2020

2121
tasks:
2222
- name: "Include staticdev.signal"
23-
include_role:
23+
ansible.builtin.include_role:
2424
name: "staticdev.signal"

tasks/keyring-setup.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
ansible.builtin.get_url:
1010
url: https://updates.signal.org/desktop/apt/keys.asc
1111
dest: "{{ tmp_dir.path }}/keys.asc"
12+
mode: "0644"
1213

1314
- name: Install Signal official public software signing key
1415
ansible.builtin.shell: |

tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
- name: Check if keyring exists
3-
stat:
3+
ansible.builtin.stat:
44
path: /usr/share/keyrings/signal-desktop-keyring.gpg
55
register: keyring_file
66

0 commit comments

Comments
 (0)