From f763c810cc8226d799a87d01568193c8bb648876 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20=C5=A0ediv=C3=BD?= Date: Tue, 31 Aug 2021 18:42:06 +0200 Subject: [PATCH] bump golang version to 1.16. --- .devcontainer/devcontainer.json | 2 +- Dockerfile | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 90b40ad0..118a1889 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -7,7 +7,7 @@ "context": "../", "args": { // Update the VARIANT arg to pick a version of Go: 1, 1.16, 1.15 - "VARIANT": "1.16", + "VARIANT": "1.17", // Options "INSTALL_NODE": "false", "NODE_VERSION": "lts/*" diff --git a/Dockerfile b/Dockerfile index 6176a418..b9d29ede 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # # Stage 1: Build. # -FROM golang:1.16-buster as build +FROM golang:1.17-buster as build WORKDIR /src # diff --git a/go.mod b/go.mod index 10763b58..a3c2eb17 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module demodesk/neko -go 1.16 +go 1.17 require ( github.com/PaesslerAG/gval v1.1.1