Compare commits

...

7 Commits
v1.2.2 ... main

Author SHA1 Message Date
d4be8a5efe chore(deps): update dependency ansible to v11 (#26)
All checks were successful
ci/woodpecker/push/build-package Pipeline was successful
ci/woodpecker/push/build-container Pipeline was successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/notify Pipeline was successful
Reviewed-on: #26
Co-authored-by: Renovator Bot <renovator@rknet.org>
Co-committed-by: Renovator Bot <renovator@rknet.org>
2024-11-19 22:51:03 +00:00
2501556cab chore(deps): update quay.io/thegeeklab/wp-docker-buildx docker tag to v6 (#25)
All checks were successful
ci/woodpecker/push/build-package Pipeline was successful
ci/woodpecker/push/build-container Pipeline was successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/notify Pipeline was successful
Reviewed-on: #25
Co-authored-by: Renovator Bot <renovator@rknet.org>
Co-committed-by: Renovator Bot <renovator@rknet.org>
2024-11-16 19:34:11 +00:00
8cf89551ee
ci: add read-only pull secret to security build
All checks were successful
ci/woodpecker/push/build-package Pipeline was successful
ci/woodpecker/push/build-container Pipeline was successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/notify Pipeline was successful
2024-11-14 21:10:03 +01:00
d6b13cc207 chore(docker): update docker.io/python:3.13-alpine docker digest to fcbcbbe (#24)
All checks were successful
ci/woodpecker/push/build-package Pipeline was successful
ci/woodpecker/push/build-container Pipeline was successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/notify Pipeline was successful
2024-11-14 00:32:04 +00:00
f28058272c chore(deps): update dependency ansible-lint to v24.10.0 (#23)
All checks were successful
ci/woodpecker/push/build-package Pipeline was successful
ci/woodpecker/push/build-container Pipeline was successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/notify Pipeline was successful
Reviewed-on: #23
Co-authored-by: Renovator Bot <renovator@rknet.org>
Co-committed-by: Renovator Bot <renovator@rknet.org>
2024-11-13 19:42:44 +00:00
2060255a9c chore(docker): update docker.io/python:3.13-alpine docker digest to ee60f1f (#22)
Some checks failed
ci/woodpecker/push/build-package Pipeline was successful
ci/woodpecker/push/build-container Pipeline failed
ci/woodpecker/push/docs unknown status
ci/woodpecker/push/notify Pipeline was successful
2024-11-13 02:02:37 +00:00
f5a2aebda5 chore(docker): update docker.io/python:3.13-alpine docker digest to bbe8d3f (#21)
All checks were successful
ci/woodpecker/push/build-package Pipeline was successful
ci/woodpecker/push/build-container Pipeline was successful
ci/woodpecker/push/docs Pipeline was successful
ci/woodpecker/push/notify Pipeline was successful
2024-11-13 00:32:42 +00:00
2 changed files with 8 additions and 6 deletions

View File

@ -7,11 +7,13 @@ when:
steps: steps:
- name: security-build - name: security-build
image: quay.io/thegeeklab/wp-docker-buildx:5 image: quay.io/thegeeklab/wp-docker-buildx:6
settings: settings:
containerfile: Containerfile.multiarch containerfile: Containerfile.multiarch
output: type=oci,dest=oci/${CI_REPO_NAME},tar=false output: type=oci,dest=oci/${CI_REPO_NAME},tar=false
repo: thegeeklab/${CI_REPO_NAME} repo: thegeeklab/${CI_REPO_NAME}
registry_config:
from_secret: DOCKER_REGISTRY_CONFIG_PULL
- name: security-scan - name: security-scan
image: docker.io/aquasec/trivy image: docker.io/aquasec/trivy
@ -28,7 +30,7 @@ steps:
TRIVY_DB_REPOSITORY: docker.io/aquasec/trivy-db:2 TRIVY_DB_REPOSITORY: docker.io/aquasec/trivy-db:2
- name: publish-dockerhub - name: publish-dockerhub
image: quay.io/thegeeklab/wp-docker-buildx:5 image: quay.io/thegeeklab/wp-docker-buildx:6
depends_on: security-scan depends_on: security-scan
settings: settings:
auto_tag: true auto_tag: true
@ -49,7 +51,7 @@ steps:
- ${CI_REPO_DEFAULT_BRANCH} - ${CI_REPO_DEFAULT_BRANCH}
- name: publish-quay - name: publish-quay
image: quay.io/thegeeklab/wp-docker-buildx:5 image: quay.io/thegeeklab/wp-docker-buildx:6
depends_on: security-scan depends_on: security-scan
settings: settings:
auto_tag: true auto_tag: true

View File

@ -1,4 +1,4 @@
FROM docker.io/python:3.13-alpine@sha256:c38ead8bcf521573dad837d7ecfdebbc87792202e89953ba8b2b83a9c5a520b6 FROM docker.io/python:3.13-alpine@sha256:fcbcbbecdeae71d3b77445d9144d1914df55110f825ab62b04a66c7c33c09373
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>" LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>" LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
@ -18,9 +18,9 @@ ARG USER=root
# renovate: datasource=pypi depName=molecule # renovate: datasource=pypi depName=molecule
ENV MOLECULE_VERSION="${MOLECULE_VERSION:-24.9.0}" ENV MOLECULE_VERSION="${MOLECULE_VERSION:-24.9.0}"
# renovate: datasource=pypi depName=ansible # renovate: datasource=pypi depName=ansible
ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-10.6.0}" ENV ANSIBLE_VERSION="${ANSIBLE_VERSION:-11.0.0}"
# renovate: datasource=pypi depName=ansible-lint # renovate: datasource=pypi depName=ansible-lint
ENV ANSIBLE_LINT_VERSION="${ANSIBLE_LINT_VERSION:-24.9.2}" ENV ANSIBLE_LINT_VERSION="${ANSIBLE_LINT_VERSION:-24.10.0}"
ENV PY_COLORS=1 ENV PY_COLORS=1
ENV ANSIBLE_FORCE_COLOR=true ENV ANSIBLE_FORCE_COLOR=true