diff --git a/Dockerfile b/Dockerfile index 76b51e8..3d686d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,9 +6,9 @@ FROM alpine:3.18.4 # https://github.com/twistedpair/google-cloud-sdk/ is a mirror that replicates the gcloud sdk versions # renovate: datasource=github-tags depName=twistedpair/google-cloud-sdk -ARG CLOUD_SDK_VERSION=454.0.0 +ARG CLOUD_SDK_VERSION=455.0.0 # renovate: datasource=github-releases depName=docker/buildx -ARG BUILDX_VERSION=v0.11.2 +ARG BUILDX_VERSION=v0.12.0 # janky janky janky ENV PATH /google-cloud-sdk/bin:$PATH diff --git a/Dockerfile.actions-runner-ubuntu-22.04 b/Dockerfile.actions-runner-ubuntu-22.04 index 69b22f6..635dc15 100644 --- a/Dockerfile.actions-runner-ubuntu-22.04 +++ b/Dockerfile.actions-runner-ubuntu-22.04 @@ -1,4 +1,6 @@ FROM summerwind/actions-runner-dind:ubuntu-22.04 +# renovate: datasource=github-releases depName=google/go-containerregistry +ARG CRANE_VERSION=v0.16.1 USER root RUN apt update && \ apt upgrade -y && \ @@ -17,4 +19,5 @@ RUN apt update && \ docker.io \ diffoscope \ gh +RUN curl -SL https://github.com/google/go-containerregistry/releases/download/${CRANE_VERSION}/go-containerregistry_Linux_x86_64.tar.gz | tar xzf - -C /usr/local/bin/ crane USER runner