diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 588336f..abee963 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -3,26 +3,26 @@ default_stages: [ commit, manual ] repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.2.0 + rev: v4.4.0 hooks: - id: no-commit-to-branch args: [ --branch, main ] - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.2.0 + rev: v4.4.0 hooks: - id: trailing-whitespace - id: end-of-file-fixer - id: fix-byte-order-marker - repo: https://github.com/ansible-community/ansible-lint.git - rev: v6.0.2 + rev: v6.14.0a0 hooks: - name: Run ansible-lint id: ansible-lint - repo: https://github.com/jorisroovers/gitlint - rev: v0.17.0 + rev: v0.19.0dev hooks: - name: Run gitlint id: gitlint diff --git a/tasks/main.yaml b/tasks/main.yaml index db70f57..b0cebbc 100644 --- a/tasks/main.yaml +++ b/tasks/main.yaml @@ -1,5 +1,5 @@ --- -- name: raw | Install python3 on Archlinux +- name: Raw | Install python3 on Archlinux ansible.builtin.raw: | test -e /bin/pacman &&\ pacman -S python3 --asexplicit --noconfirm ||\ @@ -14,7 +14,7 @@ - raw - install -- name: raw | Install python3 on RHEL +- name: Raw | Install python3 on RHEL ansible.builtin.raw: | test -e /usr/bin/dnf &&\ dnf install -y python3 ||\ @@ -29,7 +29,7 @@ - raw - install -- name: raw | install python3 on Debian +- name: Raw | install python3 on Debian ansible.builtin.raw: | test -e /usr/bin/apt &&\ apt install python3 ||\