Update dependency ansible-lint to v6.16.0 #1

Merged
aaron merged 3 commits from renovate/ansible-lint-6.x into main 2023-05-10 20:27:09 +02:00
2 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
FROM amd64/python:3.11.3-alpine3.16 FROM amd64/python:3.11.3-slim-bullseye
RUN apk add --no-cache git RUN apt-get update -qq && apt-get install -qq git --no-install-recommends && rm -rf /var/lib/apt/lists/*
WORKDIR ./ WORKDIR ./
ARG PUID=1000 ARG PUID=1000
ENV GROUP dockergroup ENV GROUP dockergroup
@ -7,7 +7,7 @@ ENV USER docker
ENV HOMEDIR "/home/${USER}" ENV HOMEDIR "/home/${USER}"
ENV PATH ${HOMEDIR}/.local/bin:$PATH ENV PATH ${HOMEDIR}/.local/bin:$PATH
ENV PLUGIN_PROFILE production ENV PLUGIN_PROFILE production
RUN addgroup -S "${GROUP}" && adduser -S "${USER}" -G "${GROUP}" RUN useradd -u "${PUID}" -m "${USER}"
COPY script.sh /bin/ COPY script.sh /bin/
RUN chmod +x /bin/script.sh RUN chmod +x /bin/script.sh
USER ${USER} USER ${USER}

View file

@ -1,2 +1,2 @@
ansible==7.5.0 ansible==7.5.0
ansible-lint==6.15.0 ansible-lint==6.16.0