chore(deps): update dependency moby/buildkit from v0.21.0 to v0.21.1
All checks were successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/test/1 Pipeline was successful
ci/woodpecker/pr/test/2 Pipeline was successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/test/1 Pipeline was successful
ci/woodpecker/push/test/2 Pipeline was successful

This commit is contained in:
Renovate 2025-06-12 13:50:08 +00:00
parent fdc95dcde0
commit 64b75cdccf
Signed by: renovate
SSH key fingerprint: SHA256:ozQD+/wRtX3XLEA5j/3Rjux2n7XyMgbJzd7oHu7kGno
2 changed files with 5 additions and 5 deletions

View file

@ -26,7 +26,7 @@ steps:
org.opencontainers.image.vendor: kokuwa.io org.opencontainers.image.vendor: kokuwa.io
org.opencontainers.image.licenses: EUPL-1.2 org.opencontainers.image.licenses: EUPL-1.2
org.opencontainers.image.ref.name: kokuwaio/buildctl org.opencontainers.image.ref.name: kokuwaio/buildctl
org.opencontainers.image.version: v0.21.0 org.opencontainers.image.version: v0.21.1
when: when:
event: pull_request event: pull_request
@ -36,11 +36,11 @@ steps:
<<: *settings <<: *settings
name: name:
- registry.kokuwa.io/kokuwaio/buildctl:latest - registry.kokuwa.io/kokuwaio/buildctl:latest
- registry.kokuwa.io/kokuwaio/buildctl:v0.21.0 - registry.kokuwa.io/kokuwaio/buildctl:v0.21.1
- docker.io/kokuwaio/buildctl:latest - docker.io/kokuwaio/buildctl:latest
- docker.io/kokuwaio/buildctl:v0.21.0 - docker.io/kokuwaio/buildctl:v0.21.1
- ghcr.io/kokuwaio/buildctl:latest - ghcr.io/kokuwaio/buildctl:latest
- ghcr.io/kokuwaio/buildctl:v0.21.0 - ghcr.io/kokuwaio/buildctl:v0.21.1
auth: auth:
"https://index.docker.io/v1/": "https://index.docker.io/v1/":
username: {from_secret: docker_io_username} username: {from_secret: docker_io_username}

View file

@ -17,7 +17,7 @@ RUN ARCH=$(uname -m) && \
[[ $ARCH == x86_64 ]] && export SUFFIX=amd64; \ [[ $ARCH == x86_64 ]] && export SUFFIX=amd64; \
[[ $ARCH == aarch64 ]] && export SUFFIX=arm64; \ [[ $ARCH == aarch64 ]] && export SUFFIX=arm64; \
[[ -z ${SUFFIX:-} ]] && echo "Unknown arch: $ARCH" && exit 1; \ [[ -z ${SUFFIX:-} ]] && echo "Unknown arch: $ARCH" && exit 1; \
wget -q "https://github.com/moby/buildkit/releases/download/v0.21.0/buildkit-v0.21.0.linux-$SUFFIX.tar.gz" --output-document=- | tar --gz --extract --directory=/usr/local bin/buildctl && \ wget -q "https://github.com/moby/buildkit/releases/download/v0.21.1/buildkit-v0.21.1.linux-$SUFFIX.tar.gz" --output-document=- | tar --gz --extract --directory=/usr/local bin/buildctl && \
chmod 555 /usr/local/bin/buildctl chmod 555 /usr/local/bin/buildctl
COPY --chmod=555 entrypoint.sh /usr/local/bin/entrypoint.sh COPY --chmod=555 entrypoint.sh /usr/local/bin/entrypoint.sh