Skip to content

Commit

Permalink
ansible: update pipfile dependencies, github action to python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
vnznznz committed Sep 20, 2024
1 parent feb6b1f commit 50c43ca
Show file tree
Hide file tree
Showing 3 changed files with 797 additions and 780 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ansible-lint.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: ansible-lint
on:
on:
push:
paths:
- 'ansible/**'
Expand All @@ -20,14 +20,14 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.12'

- name: Install dependencies
run: |
cd ansible/
python -m pip install --upgrade pip
pip install pipenv
pipenv install --skip-lock
pipenv sync
- name: Lint
run: |
Expand Down
13 changes: 7 additions & 6 deletions ansible/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ verify_ssl = true
name = "pypi"

[packages]
ansible = "==6.2.0"
molecule = {extras = ["docker"], version = "==4.0.1"}
ansible = "*"
molecule = {extras = ["docker"], version = "*"}
certifi = "*"
ansible-lint = "==6.16.0"
yamllint = "==1.30.0"
ansible-core = "==2.13.2"
ansible-lint = "*"
wcmatch = "*" # workaround ubuntu shipping a broken wcmatch package
yamllint = "*"
ansible-core = "*"
docker = "*"
boto3 = "*"
jmespath = "*"
Expand All @@ -18,4 +19,4 @@ mkdocs-material = "*"
[dev-packages]

[requires]
python_version = "3.10"
python_version = "3.12"
Loading

0 comments on commit 50c43ca

Please sign in to comment.