From 1ce235c72ca9b427ee53a6c252799087411bed47 Mon Sep 17 00:00:00 2001 From: Dirkjan Bussink Date: Wed, 5 Jun 2024 11:17:40 +0200 Subject: [PATCH] Update to latest Go Signed-off-by: Dirkjan Bussink --- Dockerfile | 2 +- Makefile | 2 +- docker-compose.yml | 2 +- go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 706652b6..9cb48af9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.2 as build +FROM golang:1.22.4 as build WORKDIR /app COPY . . diff --git a/Makefile b/Makefile index b028de27..b7f7e4bc 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.21.5 +GORELEASE_CROSS_VERSION ?= v1.22.3 SYFT_VERSION ?= 0.102.0 .PHONY: all diff --git a/docker-compose.yml b/docker-compose.yml index 67f5c470..6c49de47 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '2' services: app: - image: golang:1.22.2 + image: golang:1.22.4 volumes: - .:/work working_dir: /work diff --git a/go.mod b/go.mod index 9dbe4498..9ed68f2a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/planetscale/cli -go 1.22.2 +go 1.22.4 require ( github.com/99designs/keyring v1.2.2