From a04b68a6412186855da4507b6e7a7fdae60f92f2 Mon Sep 17 00:00:00 2001 From: Adin Schmahmann Date: Thu, 9 Dec 2021 11:02:28 -0500 Subject: [PATCH] chore: bump Go version to 1.16.12 --- .circleci/main.yml | 8 ++++---- Dockerfile | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/main.yml b/.circleci/main.yml index 2cfab61b39e..7e197701ad2 100644 --- a/.circleci/main.yml +++ b/.circleci/main.yml @@ -36,7 +36,7 @@ default_environment: &default_environment executors: golang: docker: - - image: cimg/go:1.16.11 + - image: cimg/go:1.16.12 working_directory: ~/ipfs/go-ipfs environment: <<: *default_environment @@ -61,7 +61,7 @@ executors: E2E_IPFSD_TYPE: go dockerizer: docker: - - image: cimg/go:1.16.11 + - image: cimg/go:1.16.12 environment: IMAGE_NAME: ipfs/go-ipfs WIP_IMAGE_TAG: wip @@ -150,8 +150,8 @@ jobs: - run: sudo apt update - run: | mkdir ~/localgo && cd ~/localgo - wget https://golang.org/dl/go1.16.11.linux-amd64.tar.gz - tar xfz go1.16.11.linux-amd64.tar.gz + wget https://golang.org/dl/go1.16.12.linux-amd64.tar.gz + tar xfz go1.16.12.linux-amd64.tar.gz echo "export PATH=$(pwd)/go/bin:\$PATH" >> ~/.bashrc - run: go version - run: sudo apt install socat net-tools diff --git a/Dockerfile b/Dockerfile index 449ab12908d..5be170b5e07 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Note: when updating the go minor version here, also update the go-channel in snap/snapcraft.yml -FROM golang:1.16.11-buster +FROM golang:1.16.12-buster LABEL maintainer="Steven Allen " # Install deps