Skip to content
Open
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
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ GOTAGS ?=
GOMAXPROCS ?= 4

# Get the project metadata
GOVERSION := 1.8.1
GOVERSION := 1.20
PROJECT := $(CURRENT_DIR:$(GOPATH)/src/%=%)
OWNER := $(notdir $(patsubst %/,%,$(dir $(PROJECT))))
NAME := $(notdir $(PROJECT))
Expand All @@ -30,8 +30,8 @@ GOARCH ?= $(shell go env GOARCH)

# Default os-arch combination to build
XC_OS ?= darwin freebsd linux netbsd openbsd solaris windows
XC_ARCH ?= 386 amd64 arm
XC_EXCLUDE ?= darwin/arm solaris/386 solaris/arm windows/arm
XC_ARCH ?= 386 amd64 arm arm64
XC_EXCLUDE ?= darwin/arm solaris/386 solaris/arm solaris/arm64 windows/arm windows/arm64

# GPG Signing key (blank by default, means no GPG signing)
GPG_KEY ?=
Expand Down Expand Up @@ -64,7 +64,7 @@ define make-xc-target
--dns="8.8.8.8" \
--volume="${CURRENT_DIR}:/go/src/${PROJECT}" \
--workdir="/go/src/${PROJECT}" \
"golang:1.8" \
"golang:1.20" \
env \
CGO_ENABLED="0" \
GOOS="${1}" \
Expand Down
2 changes: 1 addition & 1 deletion docker/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# Builder
#
FROM golang:1.8 AS builder
FROM golang:1.20 AS builder
LABEL maintainer "Seth Vargo <seth@sethvargo.com> (@sethvargo)"

ARG LD_FLAGS
Expand Down
2 changes: 1 addition & 1 deletion docker/scratch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# Builder
#
FROM golang:1.8 AS builder
FROM golang:1.20 AS builder
LABEL maintainer "Seth Vargo <seth@sethvargo.com> (@sethvargo)"

ARG LD_FLAGS
Expand Down