Skip to content

Commit 1ddd5ed

Browse files
committed
Update to the latest version of Go and other deps
Signed-off-by: Dirkjan Bussink <[email protected]>
1 parent 6d907e0 commit 1ddd5ed

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.6 AS build
1+
FROM golang:1.25.5 AS build
22
WORKDIR /app
33
COPY . .
44

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ endif
1111
REPO=planetscale
1212
NAME=pscale
1313
BUILD_PKG=github.com/planetscale/cli/cmd/pscale
14-
GORELEASE_CROSS_VERSION ?= v1.24.6
15-
SYFT_VERSION ?= 1.9.0
14+
GORELEASE_CROSS_VERSION ?= v1.26.0
15+
SYFT_VERSION ?= 1.38.0
1616

1717
.PHONY: all
1818
all: build test lint

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '2'
22

33
services:
44
app:
5-
image: golang:1.24.6
5+
image: golang:1.25.5
66
volumes:
77
- .:/work
88
working_dir: /work

docker/Dockerfile.goreleaser

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
ARG GORELEASE_CROSS_VERSION=v1.24.6
1+
ARG GORELEASE_CROSS_VERSION=v1.26.0
22
FROM ghcr.io/goreleaser/goreleaser-cross:${GORELEASE_CROSS_VERSION}
33

44
RUN apt-get update --allow-releaseinfo-change || apt-get update; apt-get install -y openssh-client
55

6-
ARG SYFT_VERSION=1.19.0
6+
ARG SYFT_VERSION=1.38.0
77
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

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/planetscale/cli
22

3-
go 1.24.6
3+
go 1.25.5
44

55
require (
66
github.com/99designs/keyring v1.2.2

0 commit comments

Comments
 (0)