[GLOBAL] Upgraded to Alpine 3.16 and ansible-core version 2.12
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Cornet 2022-05-31 15:47:33 +02:00
parent 8cd300aec4
commit e546357a24
2 changed files with 5 additions and 5 deletions

View File

@ -27,5 +27,5 @@ steps:
# tags
tags:
- 'v0.5'
- 'v0.6'
- 'latest'

View File

@ -1,10 +1,10 @@
# alpine version
FROM alpine:3.15
FROM alpine:3.16
# software versions
ENV ANSIBLE_VERSION=2.10.17
ENV ANSIBLE_LINT_VERSION=5.4.0
ENV ANSIBLE_VERSION=2.12
ENV ANSIBLE_LINT_VERSION=6.2.2
ENV YAML_LINT_VERSION=1.26.3
@ -27,7 +27,7 @@ RUN rm -rf /var/cache/apk/*
# install ansible + linters
RUN pip3 install --upgrade pip
RUN pip3 install ansible-base==${ANSIBLE_VERSION}
RUN pip3 install ansible-core==${ANSIBLE_VERSION}
RUN pip3 install ansible-lint==${ANSIBLE_LINT_VERSION}
RUN pip3 install yamllint==${YAML_LINT_VERSION}