Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update deps #20

Merged
merged 3 commits into from
Jan 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ansible-lint
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@

skip_list:
- name[casing]
- risky-shell-pipe
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- ubuntu22
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Python 3
uses: actions/setup-python@v4
Expand All @@ -38,4 +38,3 @@ jobs:
molecule test
env:
MOLECULE_DISTRO: ${{ matrix.distro }}

2 changes: 1 addition & 1 deletion ansible.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
role_path = ./roles
retry_files_enabled = false
inventory = ./inventory
collections_paths = /etc/ansible/collections
collections_path = /etc/ansible/collections
log_path = /var/log/potos/ansible.log
local_tmp = /tmp/.ansible/tmp
remote_tmp = /tmp/.ansible/tmp
Expand Down
11 changes: 8 additions & 3 deletions molecule-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
# At least Ansible 2.12 is needed due to used features like 'argument_specs'
ansible>=2.12

# Required for testing
ansible-lint[yamllint]
molecule[docker, lint]
## ansible/yaml lint
ansible-lint~=6.22.1
yamllint~=1.33.0

## molecule tests
molecule~=6.0.3
molecule-plugins~=23.5.0
docker~=7.0.0
1 change: 1 addition & 0 deletions molecule/default/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
ansible.builtin.shell: # noqa: command-instead-of-module
apt-get update && apt-get upgrade -y
when: ansible_distribution == 'Ubuntu'
changed_when: true

- name: Install git
ansible.builtin.package:
Expand Down