upgrade dependencies

This commit is contained in:
Lee Goolsbee
2022-09-07 15:46:23 -05:00
parent 4854676d50
commit e1f5521652
6 changed files with 504 additions and 761 deletions

17
Pipfile
View File

@@ -4,17 +4,16 @@ verify_ssl = true
name = "pypi"
[packages]
ansible = "==2.10.7"
boto3 = "==1.17.49"
botocore = "==1.20.49"
ansible-core = "==2.13.3"
boto3 = "==1.24.68"
botocore = "==1.27.68"
[dev-packages]
molecule = "==3.2.2"
molecule-docker = "==0.2.4"
docker = "==4.4.1"
taskcat = "*"
molecule = "==4.0.1"
molecule-docker = "==2.0.0"
docker = "==6.0.0"
pytest = "*"
testinfra = "*"
pytest-testinfra = "*"
[requires]
python_version = "3.7"
python_version = "3"

1219
Pipfile.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -4,13 +4,14 @@ set -e
source /etc/os-release
if [[ $ID = "amzn" ]]; then
amazon-linux-extras enable python3.8
yum clean metadata
yum install -y \
python3-devel \
python3-pip \
python2-boto3 \
python2-botocore \
python2-pip
python38
python38-pip
python38-devel
python-lxml
else
# FIXME: Currently assumes Debian-based
apt-get update && \
@@ -32,4 +33,4 @@ if [[ $1 == "--dev" ]]; then
fi
echo "Installing collections from galaxy..."
pipenv run ansible-galaxy collection install -v -r requirements.yml
pipenv run ansible-galaxy collection install --upgrade --verbose --requirements-file requirements.yml

View File

@@ -4,7 +4,7 @@
#
# make > ../bitbucket-pipelines.yml
image: debian:buster
image: debian:bullseye
options:
size: 2x
@@ -383,6 +383,6 @@ pipelines:
script:
- ./bin/install-ansible --dev
- apt-get update && apt-get install -y npm
- npm install -g snyk@1.455.0
- npm install -g snyk
- snyk auth $SNYK_TOKEN
- pipenv run snyk monitor --severity-threshold=high --project-name=dc-deployments-automation

View File

@@ -4,7 +4,7 @@
#
# make > ../bitbucket-pipelines.yml
image: debian:buster
image: debian:bullseye
options:
size: 2x

View File

@@ -1,4 +1,12 @@
---
collections:
- name: amazon.aws
version: 3.0.0
version: "4.1.0"
- name: ansible.posix
version: "1.4.0"
- name: community.docker
version: "3.0.2"
- name: community.general
version: "5.5.0"
- name: community.postgresql
version: "2.2.0"