From 4319bc47f689151b74cb350934396851cb5b54ff Mon Sep 17 00:00:00 2001 From: Casey Callendrello Date: Wed, 19 Jan 2022 18:01:25 +0100 Subject: [PATCH] build: bump to go 1.17 Signed-off-by: Casey Callendrello --- .github/workflows/test.yaml | 2 +- scripts/release.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a546bb68..7283eb3c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -4,7 +4,7 @@ name: test on: ["push", "pull_request"] env: - GO_VERSION: "1.16" + GO_VERSION: "1.17" LINUX_ARCHES: "amd64 386 arm arm64 s390x mips64le ppc64le" jobs: diff --git a/scripts/release.sh b/scripts/release.sh index da654050..9b0e0a32 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -16,7 +16,7 @@ rm -Rf ${SRC_DIR}/${RELEASE_DIR} mkdir -p ${SRC_DIR}/${RELEASE_DIR} mkdir -p ${OUTPUT_DIR} -$DOCKER run -ti -v ${SRC_DIR}:/go/src/github.com/containernetworking/plugins:z --rm golang:1.16-alpine \ +$DOCKER run -ti -v ${SRC_DIR}:/go/src/github.com/containernetworking/plugins:z --rm golang:1.17-alpine \ /bin/sh -xe -c "\ apk --no-cache add bash tar; cd /go/src/github.com/containernetworking/plugins; umask 0022;