Skip to content

Commit

Permalink
Merge pull request #625 from planetscale/dbussink/go-1-20-1
Browse files Browse the repository at this point in the history
Update to Go 1.20.1
  • Loading branch information
dbussink authored Feb 28, 2023
2 parents 87deec9 + 660d1b6 commit c9aca38
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19.5 as build
FROM golang:1.20.1 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,7 +11,7 @@ endif
REPO=planetscale
NAME=pscale
BUILD_PKG=github.com/planetscale/cli/cmd/pscale
GORELEASE_CROSS_VERSION ?= v1.19.5
GORELEASE_CROSS_VERSION ?= v1.20.1

.PHONY: all
all: build test lint
Expand Down Expand Up @@ -67,5 +67,5 @@ release:
-v /var/run/docker.sock:/var/run/docker.sock \
-v `pwd`:/go/src/${REPO}/${NAME} \
-w /go/src/${REPO}/${NAME} \
goreleaser/goreleaser-cross:${GORELEASE_CROSS_VERSION} \
ghcr.io/goreleaser/goreleaser-cross:${GORELEASE_CROSS_VERSION} \
release --rm-dist ${GORELEASER_EXTRA_ARGS}
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.19.5
image: golang:1.20.1
volumes:
- .:/work
working_dir: /work
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.licensed
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.19.5-bullseye
FROM golang:1.20.1-bullseye

RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y ruby-dev rubygems ruby cmake pkg-config git-core libgit2-dev
Expand Down

0 comments on commit c9aca38

Please sign in to comment.