mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
ci/cd - downgrade python ansible deps
This commit is contained in:
parent
ad66a03767
commit
aff65f5a19
3 changed files with 10 additions and 7 deletions
|
|
@ -1 +1 @@
|
|||
ansible==10.1.0
|
||||
ansible==9.5.1
|
||||
|
|
|
|||
|
|
@ -4,13 +4,13 @@
|
|||
#
|
||||
# pip-compile --allow-unsafe --generate-hashes --strip-extras requirements-ansible.in
|
||||
#
|
||||
ansible==10.1.0 \
|
||||
--hash=sha256:05b761c4628a0fc216478a5e3c111613c61fd13280846fa84843a63c36c7b1b6 \
|
||||
--hash=sha256:7d8c44557f570687306e19d0e3296ad230593cb12bda35dcfc9274a6063af22a
|
||||
ansible==9.5.1 \
|
||||
--hash=sha256:3c278bc9642b97fc953b2ba05b99cd80801e75bf3567dfaa1cb5131fe0ec1ecd \
|
||||
--hash=sha256:aed2f4208a75836a27c13555ec5d8d942fe3b089a8b1fc44e8234fadd9e649fd
|
||||
# via -r requirements-ansible.in
|
||||
ansible-core==2.17.1 \
|
||||
--hash=sha256:46449d71bbd17c3ce85fe379721d88d333fd23637b5c3798e83fae5fa38def00 \
|
||||
--hash=sha256:aaaccf6a9fe05968821a02079c5ec4c33a7fe5f02d9f5d94f7c3a69f71eab675
|
||||
ansible-core==2.16.8 \
|
||||
--hash=sha256:59e4aa40ed5acdb4ef9bbf3d058918fff93f66a149373d8159c8a29604410bda \
|
||||
--hash=sha256:8fab9f08049e3cbc181f0566a17dfb896d9164ef5048c63e9e07fda4624686c7
|
||||
# via ansible
|
||||
cffi==1.16.0 \
|
||||
--hash=sha256:0c9ef6ff37e974b73c25eecc13952c55bceed9112be2d9d938ded8e856138bcc \
|
||||
|
|
|
|||
|
|
@ -45,6 +45,9 @@ files=("requirements.in" "../scheduler/requirements.in" "../ui/requirements.in")
|
|||
shopt -s globstar
|
||||
for file in ../{common,../{docs,misc,tests}}/**/requirements*.in
|
||||
do
|
||||
if echo "$file" | grep "ansible"; then
|
||||
continue
|
||||
fi
|
||||
files+=("$file")
|
||||
done
|
||||
shopt -u globstar
|
||||
|
|
|
|||
Loading…
Reference in a new issue