diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index 9c5a630..9f42412 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -31,7 +31,7 @@ steps: --label=org.opencontainers.image.source=$CI_REPO_CLONE_URL --label=org.opencontainers.image.vendor=kokuwa.io --label=org.opencontainers.image.licenses=GPL-3.0-or-later - --label=org.opencontainers.image.version=1.36.2 + --label=org.opencontainers.image.version=1.37.0 test: image: ci-registry.schnabel.org/kokuwaio/yamllint:${CI_PIPELINE_NUMBER}-${PLATFORM} diff --git a/.woodpecker/push.yaml b/.woodpecker/push.yaml index 5f83fbf..229ff93 100644 --- a/.woodpecker/push.yaml +++ b/.woodpecker/push.yaml @@ -24,7 +24,7 @@ steps: - echo "$AUTH" > /tmp/auth.json - skopeo copy --all --preserve-digests --dest-precompute-digests docker://ci-registry.schnabel.org/kokuwaio/yamllint:$CI_PIPELINE_NUMBER - docker://$URL/kokuwaio/yamllint:1.36.2 + docker://$URL/kokuwaio/yamllint:1.37.0 - skopeo copy --all --preserve-digests --dest-precompute-digests docker://ci-registry.schnabel.org/kokuwaio/yamllint:$CI_PIPELINE_NUMBER docker://$URL/kokuwaio/yamllint:latest diff --git a/Dockerfile b/Dockerfile index adb2d68..e9d092c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,7 +18,7 @@ RUN --mount=type=cache,target=/var/lib/apt/lists,sharing=locked \ apt-get -qq update && \ apt-get -qq install --yes --no-install-recommends python3-pip && \ rm -rf /etc/*- /var/lib/dpkg/*-old /var/lib/dpkg/status /var/cache/* /var/log/* -RUN pip install yamllint==1.36.2 \ +RUN pip install yamllint==1.37.0 \ --root=/build \ --root-user-action=ignore \ --break-system-packages \