Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.6 AS build
FROM golang:1.25.5 AS build
WORKDIR /app
COPY . .

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ endif
REPO=planetscale
NAME=pscale
BUILD_PKG=github.com/planetscale/cli/cmd/pscale
GORELEASE_CROSS_VERSION ?= v1.24.6
SYFT_VERSION ?= 1.9.0
GORELEASE_CROSS_VERSION ?= v1.26.0
SYFT_VERSION ?= 1.38.0

.PHONY: all
all: build test lint
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2'

services:
app:
image: golang:1.24.6
image: golang:1.25.5
volumes:
- .:/work
working_dir: /work
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.goreleaser
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG GORELEASE_CROSS_VERSION=v1.24.6
ARG GORELEASE_CROSS_VERSION=v1.26.0
FROM ghcr.io/goreleaser/goreleaser-cross:${GORELEASE_CROSS_VERSION}

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

ARG SYFT_VERSION=1.19.0
ARG SYFT_VERSION=1.38.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
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/planetscale/cli

go 1.24.6
go 1.25.5

require (
github.com/99designs/keyring v1.2.2
Expand Down