From bbf96d36e32c159ba123ebc1f2955f951ba3dae9 Mon Sep 17 00:00:00 2001 From: Mike Coutermarsh Date: Sun, 27 Jul 2025 13:53:48 -0400 Subject: [PATCH] Fix build --- Makefile | 2 +- docker/Dockerfile.goreleaser | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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