diff --git a/Makefile b/Makefile index d77122fa..a1d21820 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ endif REPO=planetscale NAME=pscale BUILD_PKG=github.com/planetscale/cli/cmd/pscale -GORELEASE_CROSS_VERSION ?= v1.23.2 +GORELEASE_CROSS_VERSION ?= v1.24.5 SYFT_VERSION ?= 1.9.0 .PHONY: all diff --git a/docker/Dockerfile.goreleaser b/docker/Dockerfile.goreleaser index fb315301..5fedc8b6 100644 --- a/docker/Dockerfile.goreleaser +++ b/docker/Dockerfile.goreleaser @@ -1,7 +1,7 @@ -ARG GORELEASE_CROSS_VERSION=v1.24.0 +ARG GORELEASE_CROSS_VERSION=v1.24.5 FROM ghcr.io/goreleaser/goreleaser-cross:${GORELEASE_CROSS_VERSION} -RUN apt-get update && apt-get install -y openssh-client +RUN apt-get update --allow-releaseinfo-change || apt-get update; apt-get install -y openssh-client ARG SYFT_VERSION=1.19.0 RUN wget -O syft.deb https://github.com/anchore/syft/releases/download/v${SYFT_VERSION}/syft_${SYFT_VERSION}_linux_amd64.deb && dpkg -i syft.deb